Home | History | Annotate | Download | only in tests
      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: -webkit-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       -webkit-flex-direction: column;
     52       display: -webkit-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: -webkit-flex;
     60       -webkit-flex-direction: column;
     61       min-height: 0;
     62     }
     63     title-bar {
     64       -webkit-align-items: center;
     65       -webkit-flex-direction: row;
     66       border-bottom: 1px solid #ccc;
     67       background-color: #ddd;
     68       display: -webkit-flex;
     69       padding: 5px;
     70       -webkit-flex: 0 0 auto;
     71     }
     72     title {
     73       display: inline;
     74       font-weight: bold;
     75       -webkit-box-flex: 1;
     76       -webkit-flex: 1 1 auto;
     77     }
     78     close-button {
     79       -webkit-align-self: flex-end;
     80       border: 1px solid #eee;
     81       background-color: #999;
     82       font-size: 10pt;
     83       font-weight: bold;
     84       padding: 2px;
     85       text-align: center;
     86       width: 16px;
     87     }
     88     close-button:hover {
     89       background-color: #ddd;
     90       border-color: black;
     91       cursor: pointer;
     92     }
     93     overlay-content {
     94       display: -webkit-flex;
     95       -webkit-flex: 1 1 auto;
     96       -webkit-flex-direction: column;
     97       overflow-y: auto;
     98       padding: 10px;
     99       min-width: 300px;
    100       min-height: 0;
    101     }
    102     button-bar {
    103       -webkit-align-items: baseline;
    104       border-top: 1px solid #ccc;
    105       display: -webkit-flex;
    106       -webkit-flex: 0 0 auto;
    107       -webkit-flex-direction: row-reverse;
    108       padding: 4px;
    109     }
    110   </style>
    111 
    112   <overlay-mask>
    113     <overlay-vertical-centering-container>
    114       <overlay-frame>
    115         <title-bar>
    116           <title></title>
    117           <close-button></close-button>
    118         </title-bar>
    119         <overlay-content>
    120           <content></content>
    121         </overlay-content>
    122         <button-bar></button-bar>
    123       </overlay-frame>
    124     </overlay-vertical-centering-container>
    125   </overlay-mask>
    126 </template><style>
    127 * /deep/ .labeled-checkbox {
    128   display: flex;
    129   white-space: nowrap;
    130 }
    131 </style><dom-module id="tr-ui-a-analysis-link">
    132   <template>
    133     <style>
    134     :host {
    135       display: inline;
    136       cursor: pointer;
    137       cursor: pointer;
    138       white-space: nowrap;
    139     }
    140     a {
    141       text-decoration: underline;
    142     }
    143     </style>
    144     <a href="{{href}}" on-click="onClicked_" on-mouseenter="onMouseEnter_" on-mouseleave="onMouseLeave_"><content></content></a>
    145 
    146   </template>
    147 </dom-module><dom-module id="tr-ui-b-table">
    148   <template>
    149     <style>
    150       :host {
    151         display: flex;
    152         flex-direction: column;
    153       }
    154 
    155       table {
    156         flex: 1 1 auto;
    157         align-self: stretch;
    158         border-collapse: separate;
    159         border-spacing: 0;
    160         border-width: 0;
    161         -webkit-user-select: initial;
    162       }
    163 
    164       tr > td {
    165         padding: 2px 4px 2px 4px;
    166         vertical-align: top;
    167       }
    168 
    169       table > tbody:focus {
    170         outline: none;
    171       }
    172       table > tbody:focus[selection-mode="row"] > tr[selected],
    173       table > tbody:focus[selection-mode="cell"] > tr > td[selected],
    174       table > tbody:focus > tr.empty-row > td {
    175         outline: 1px dotted #666666;
    176         outline-offset: -1px;
    177       }
    178 
    179       button.toggle-button {
    180         height: 15px;
    181         line-height: 60%;
    182         vertical-align: middle;
    183         width: 100%;
    184       }
    185 
    186       button > * {
    187         height: 15px;
    188         vertical-align: middle;
    189       }
    190 
    191       td.button-column {
    192         width: 30px;
    193       }
    194 
    195       table > thead > tr > td.sensitive:hover {
    196         background-color: #fcfcfc;
    197       }
    198 
    199       table > thead > tr > td {
    200         font-weight: bold;
    201         text-align: left;
    202 
    203         background-color: #eee;
    204         white-space: nowrap;
    205         overflow: hidden;
    206         text-overflow: ellipsis;
    207 
    208         border-top: 1px solid #ffffff;
    209         border-bottom: 1px solid #aaa;
    210       }
    211 
    212       table > tfoot {
    213         background-color: #eee;
    214         font-weight: bold;
    215       }
    216 
    217       /* Light row and cell highlight. */
    218       table > tbody[row-highlight-style="light"] > tr[selected],
    219       table > tbody[cell-highlight-style="light"] > tr > td[selected] {
    220         background-color: rgb(213, 236, 229);  /* light turquoise */
    221       }
    222       table > tbody[row-highlight-style="light"] >
    223           tr:not(.empty-row):not([selected]):hover,
    224       table > tbody[cell-highlight-style="light"] >
    225           tr:not(.empty-row):not([selected]) > td:hover {
    226         background-color: #f6f6f6;  /* light grey */
    227       }
    228 
    229       /* Dark row and cell highlight. */
    230       table > tbody[row-highlight-style="dark"] > tr[selected],
    231       table > tbody[cell-highlight-style="dark"] > tr > td[selected] {
    232         background-color: rgb(103, 199, 165);  /* turquoise */
    233       }
    234       table > tbody[row-highlight-style="dark"] >
    235           tr:not(.empty-row):not([selected]):hover,
    236       table > tbody[cell-highlight-style="dark"] >
    237           tr:not(.empty-row):not([selected]) > td:hover {
    238         background-color: #e6e6e6;  /* grey */
    239       }
    240       table > tbody[row-highlight-style="dark"] > tr:hover[selected],
    241       table > tbody[cell-highlight-style="dark"] > tr[selected] > td:hover {
    242         background-color: rgb(171, 217, 202);  /* semi-light turquoise */
    243       }
    244 
    245       table > colgroup > col[selected] {
    246         background-color: #e6e6e6;  /* grey */
    247       }
    248 
    249       table > tbody > tr.empty-row > td {
    250         color: #666;
    251         font-style: italic;
    252         text-align: center;
    253       }
    254 
    255       table > tbody.has-footer > tr:last-child > td {
    256         border-bottom: 1px solid #aaa;
    257       }
    258 
    259       table > tfoot > tr:first-child > td {
    260         border-top: 1px solid #ffffff;
    261       }
    262 
    263       :host([zebra]) table tbody tr:nth-child(even) {
    264         background-color: #f4f4f4;
    265       }
    266 
    267       expand-button {
    268         -webkit-user-select: none;
    269         cursor: pointer;
    270         margin-right: 3px;
    271         font-size: smaller;
    272         height: 1rem;
    273       }
    274 
    275       expand-button.button-expanded {
    276         transform: rotate(90deg);
    277       }
    278     </style>
    279     <table>
    280       <colgroup id="cols">
    281       </colgroup>
    282       <thead id="head">
    283       </thead>
    284       <tbody id="body">
    285       </tbody>
    286       <tfoot id="foot">
    287       </tfoot>
    288     </table>
    289   </template>
    290 </dom-module><dom-module id="tr-ui-b-table-header-cell">
    291   <template>
    292   <style>
    293     :host {
    294       -webkit-user-select: none;
    295       display: flex;
    296     }
    297 
    298     span {
    299       flex: 0 1 auto;
    300     }
    301 
    302     #side {
    303       -webkit-user-select: none;
    304       flex: 0 0 auto;
    305       padding-left: 2px;
    306       padding-right: 2px;
    307       vertical-align: top;
    308       font-size: 15px;
    309       font-family: sans-serif;
    310       line-height: 85%;
    311       margin-left: 5px;
    312     }
    313 
    314     #side.disabled {
    315       color: rgb(140, 140, 140);
    316     }
    317 
    318     #title:empty, #side:empty {
    319       display: none;
    320     }
    321   </style>
    322 
    323     <span id="title"></span>
    324     <span id="side"></span>
    325   </template>
    326 </dom-module><dom-module id="tr-v-ui-scalar-context-controller">
    327   <template></template>
    328 </dom-module><dom-module id="tr-v-ui-scalar-span">
    329   <template>
    330     <style>
    331     :host {
    332       display: flex;
    333       flex-direction: row;
    334       justify-content: flex-end;
    335       position: relative;
    336       /* Limit the sparkline's negative z-index to the span only. */
    337       isolation: isolate;
    338     }
    339 
    340     :host(.left-align) {
    341       justify-content: flex-start;
    342     }
    343 
    344     :host(.inline) {
    345       display: inline-flex;
    346     }
    347 
    348     #sparkline {
    349       width: 0%;
    350       position: absolute;
    351       bottom: 0;
    352       display: none;
    353       height: 100%;
    354       background-color: hsla(216, 100%, 94.5%, .75);
    355       border-color: hsl(216, 100%, 89%);
    356       box-sizing: border-box;
    357       z-index: -1;
    358     }
    359     #sparkline.positive {
    360       border-right-style: solid;
    361       /* The border width must be kept in sync with buildSparklineStyle_(). */
    362       border-right-width: 1px;
    363     }
    364     #sparkline:not(.positive) {
    365       border-left-style: solid;
    366       /* The border width must be kept in sync with buildSparklineStyle_(). */
    367       border-left-width: 1px;
    368     }
    369     #sparkline.better {
    370       background-color: hsla(115, 100%, 93%, .75);
    371       border-color: hsl(118, 60%, 80%);
    372     }
    373     #sparkline.worse {
    374       background-color: hsla(0, 100%, 88%, .75);
    375       border-color: hsl(0, 100%, 80%);
    376     }
    377 
    378     #content, #significance, #warning {
    379       flex-grow: 0;
    380     }
    381     #content.better {
    382       color: green;
    383     }
    384     #content.worse {
    385       color: red;
    386     }
    387 
    388     #significance svg {
    389       margin-left: 4px;
    390       display: none;
    391       height: 1em;
    392       vertical-align: text-top;
    393       stroke-width: 4;
    394       fill: rgba(0, 0, 0, 0);
    395     }
    396     #significance #insignificant {
    397       stroke: black;
    398     }
    399     #significance #significantly_better {
    400       stroke: green;
    401     }
    402     #significance #significantly_worse {
    403       stroke: red;
    404     }
    405 
    406     #warning {
    407       display: none;
    408       margin-left: 4px;
    409       height: 1em;
    410       vertical-align: text-top;
    411       stroke-width: 0;
    412     }
    413     #warning path {
    414       fill: rgb(255, 185, 185);
    415     }
    416     #warning rect {
    417       fill: red;
    418     }
    419     </style>
    420 
    421     <span id="sparkline"></span>
    422 
    423     <span id="content"></span>
    424 
    425     <span id="significance">
    426       
    427       <svg id="insignificant" viewBox="0 0 128 128">
    428         <circle cx="64" cy="64" r="60"></circle>
    429         <circle cx="44" cy="44" r="4"></circle>
    430         <circle cx="84" cy="44" r="4"></circle>
    431         <line x1="36" x2="92" y1="80" y2="80"></line>
    432       </svg>
    433 
    434       
    435       <svg id="significantly_better" viewBox="0 0 128 128">
    436         <circle cx="64" cy="64" r="60"></circle>
    437         <circle cx="44" cy="44" r="4"></circle>
    438         <circle cx="84" cy="44" r="4"></circle>
    439         <path d="M 28 64 Q 64 128 100 64"></path>
    440       </svg>
    441 
    442       
    443       <svg id="significantly_worse" viewBox="0 0 128 128">
    444         <circle cx="64" cy="64" r="60"></circle>
    445         <circle cx="44" cy="44" r="4"></circle>
    446         <circle cx="84" cy="44" r="4"></circle>
    447         <path d="M 36 96 Q 64 48 92 96"></path>
    448       </svg>
    449     </span>
    450 
    451     <svg id="warning" viewBox="0 0 128 128">
    452       <path d="M 64 0 L 128 128 L 0 128 L 64 0"></path>
    453       <rect height="84" width="8" x="60" y="0"></rect>
    454       <rect height="24" width="8" x="60" y="100"></rect>
    455     </svg>
    456   </template>
    457 </dom-module><dom-module id="tr-ui-a-generic-object-view">
    458   <template>
    459     <style>
    460     :host {
    461       display: block;
    462       font-family: monospace;
    463     }
    464     </style>
    465     <div id="content">
    466     </div>
    467   </template>
    468 </dom-module><dom-module id="tr-ui-a-generic-object-view-with-label">
    469   <template>
    470     <style>
    471     :host {
    472       display: block;
    473     }
    474     </style>
    475   </template>
    476 </dom-module><dom-module id="tr-ui-b-drag-handle">
    477   <template>
    478     <style>
    479     :host {
    480       -webkit-user-select: none;
    481       box-sizing: border-box;
    482       display: block;
    483     }
    484 
    485     :host(.horizontal-drag-handle) {
    486       background-image: -webkit-gradient(linear,
    487                                          0 0, 0 100%,
    488                                          from(#E5E5E5),
    489                                          to(#D1D1D1));
    490       border-bottom: 1px solid #8e8e8e;
    491       border-top: 1px solid white;
    492       cursor: ns-resize;
    493       flex: 0 0 auto;
    494       height: 7px;
    495       position: relative;
    496     }
    497 
    498     :host(.vertical-drag-handle) {
    499       background-image: -webkit-gradient(linear,
    500                                          0 0, 100% 0,
    501                                          from(#E5E5E5),
    502                                          to(#D1D1D1));
    503       border-left: 1px solid white;
    504       border-right: 1px solid #8e8e8e;
    505       cursor: ew-resize;
    506       flex: 0 0 auto;
    507       position: relative;
    508       width: 7px;
    509     }
    510     </style>
    511     <div></div>
    512   </template>
    513 </dom-module><dom-module id="tv-ui-b-hotkey-controller">
    514   <template>
    515     <div></div>
    516   </template>
    517 </dom-module><dom-module id="tr-ui-b-info-bar">
    518   <template>
    519     <style>
    520     :host {
    521       align-items: center;
    522       flex: 0 0 auto;
    523       background-color: rgb(252, 235, 162);
    524       border-bottom: 1px solid #A3A3A3;
    525       border-left: 1px solid white;
    526       border-right: 1px solid #A3A3A3;
    527       border-top: 1px solid white;
    528       display: flex;
    529       height: 26px;
    530       padding: 0 3px 0 3px;
    531     }
    532 
    533     :host([hidden]) {
    534       display: none !important;
    535     }
    536 
    537     #message { flex: 1 1 auto; }
    538     </style>
    539 
    540     <span id="message"></span>
    541     <span id="buttons"></span>
    542   </template>
    543 </dom-module>
    544 <!--CATAPULT_REV=1fb40f5928326d109b716dc85d78c5e86612f7a6-->
    545 </head>
    546 <body>
    547   <tr-ui-timeline-view>
    548     <track-view-container id='track_view_container'></track-view-container>
    549   </tr-ui-timeline-view>
    550 
    551   <script>
    552   'use strict';
    553   var timelineViewEl;
    554 
    555   function onLoad() {
    556     timelineViewEl = document.querySelector('tr-ui-timeline-view');
    557     timelineViewEl.globalMode = true;
    558 
    559     var traceDataEls = document.body.querySelectorAll('.trace-data');
    560     var traces = [];
    561     for (var i = 0; i < traceDataEls.length; i++) {
    562       var traceText = traceDataEls[i].textContent;
    563       // Remove the leading newline.
    564       traceText = traceText.substring(1);
    565       traces.push(traceText);
    566     }
    567 
    568     var m = new tr.Model();
    569     var i = new tr.importer.Import(m);
    570     var p = i.importTracesWithProgressDialog(traces);
    571     p.then(
    572       function() {
    573         timelineViewEl.model = m;
    574         timelineViewEl.updateDocumentFavicon();
    575         timelineViewEl.globalMode = true;
    576         timelineViewEl.viewTitle = 'Android System Trace';
    577       },
    578       function(err) {
    579         var overlay = new tr.ui.b.Overlay();
    580         overlay.textContent = tr.b.normalizeException(err).message;
    581         overlay.title = 'Import error';
    582         overlay.visible = true;
    583       });
    584   }
    585   window.addEventListener('load', onLoad);
    586   </script>
    587 <!-- BEGIN TRACE -->
    588   <script class="trace-data" type="application/text">
    589 # tracer: nop
    590 #
    591 # entries-in-buffer/entries-written: 180350/180350   #P:8
    592 #
    593 #                                      _-----=> irqs-off
    594 #                                     / _----=> need-resched
    595 #                                    | / _---=> hardirq/softirq
    596 #                                    || / _--=> preempt-depth
    597 #                                    ||| /     delay
    598 #           TASK-PID    TGID   CPU#  ||||    TIMESTAMP  FUNCTION
    599 #              | |        |      |   ||||       |         |
    600 kworker/u17:1-959   (  959) [006] d..3   538.064659: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    601           <idle>-0     (-----) [006] d..2   538.064674: cpu_idle: state=2 cpu_id=6
    602 <7952>-7952  (-----) [000] ...1   538.064761: tracing_mark_write: trace_event_clock_sync: parent_ts=538.064758
    603 <7952>-7952  (-----) [000] ...1   538.064769: tracing_mark_write: trace_event_clock_sync: realtime_ts=1495123564025
    604 <7952>-7952  (-----) [000] d..4   538.064909: sugov_set_iowait_boost: doing iow boost
    605 <7952>-7952  (-----) [000] dn.4   538.064912: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
    606 <7952>-7952  (-----) [000] d..3   538.064918: sched_switch: prev_comm=atrace prev_pid=7952 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    607           <idle>-0     (-----) [006] d.h3   538.064923: sugov_set_iowait_boost: skipping iow boost
    608 kworker/u16:11-682   (  682) [000] d..3   538.064928: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=7952 next_prio=120
    609           <idle>-0     (-----) [006] dnh3   538.064931: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    610           <idle>-0     (-----) [006] .n.2   538.064937: cpu_idle: state=4294967295 cpu_id=6
    611           <idle>-0     (-----) [006] d..3   538.064947: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    612 kworker/u17:1-959   (  959) [006] d..4   538.064996: sched_wakeup: comm=<-transport pid=5851 prio=120 target_cpu=007
    613 <7952>-7952  (-----) [000] dn.4   538.065022: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
    614 kworker/u17:1-959   (  959) [006] d..3   538.065026: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    615 <7952>-7952  (-----) [000] d..3   538.065028: sched_switch: prev_comm=atrace prev_pid=7952 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    616 kworker/u16:11-682   (  682) [000] d..3   538.065034: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=7952 next_prio=120
    617           <idle>-0     (-----) [006] d..2   538.065039: cpu_idle: state=2 cpu_id=6
    618 <7952>-7952  (-----) [000] dn.4   538.065041: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
    619 <7952>-7952  (-----) [000] d..3   538.065045: sched_switch: prev_comm=atrace prev_pid=7952 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    620 kworker/u16:11-682   (  682) [000] d..3   538.065051: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=7952 next_prio=120
    621 <7952>-7952  (-----) [000] dn.4   538.065059: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
    622 <7952>-7952  (-----) [000] d..3   538.065062: sched_switch: prev_comm=atrace prev_pid=7952 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    623 kworker/u16:11-682   (  682) [000] d..3   538.065070: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=7952 next_prio=120
    624           <idle>-0     (-----) [007] .n.2   538.065134: cpu_idle: state=4294967295 cpu_id=7
    625           <idle>-0     (-----) [007] d..3   538.065152: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=<-transport next_pid=5851 next_prio=120
    626 <7952>-7952  (-----) [000] dn.4   538.065161: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
    627 <7952>-7952  (-----) [000] d..3   538.065165: sched_switch: prev_comm=atrace prev_pid=7952 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    628 kworker/u16:11-682   (  682) [000] d..3   538.065183: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=7952 next_prio=120
    629 <7952>-7952  (-----) [000] dn.4   538.065190: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
    630 <7952>-7952  (-----) [000] d..3   538.065194: sched_switch: prev_comm=atrace prev_pid=7952 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    631 kworker/u16:11-682   (  682) [000] d..3   538.065199: sugov_set_iowait_boost: doing iow boost
    632 kworker/u16:11-682   (  682) [000] d..3   538.065202: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=7952 next_prio=120
    633 <-transport-5851  ( 5833) [007] d..4   538.065208: sugov_set_iowait_boost: skipping iow boost
    634 <-transport-5851  ( 5833) [007] d..4   538.065215: sched_wakeup: comm=adbd pid=5833 prio=120 target_cpu=007
    635 <7952>-7952  (-----) [000] dn.4   538.065224: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
    636 <-transport-5851  ( 5833) [007] dnh5   538.065227: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=007
    637 <7952>-7952  (-----) [000] d..3   538.065227: sched_switch: prev_comm=atrace prev_pid=7952 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    638 <-transport-5851  ( 5833) [007] d..3   538.065234: sched_switch: prev_comm=<-transport prev_pid=5851 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=5860 next_prio=49
    639 kworker/u16:11-682   (  682) [000] d..3   538.065237: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=7952 next_prio=120
    640 sugov:4-5860  ( 5860) [007] ...1   538.065247: clock_set_rate: perfcl_clk state=300000000 cpu_id=7
    641 sugov:4-5860  ( 5860) [007] ...1   538.065254: cpu_frequency: state=300000 cpu_id=4
    642 sugov:4-5860  ( 5860) [007] ...1   538.065264: cpu_frequency: state=300000 cpu_id=5
    643 sugov:4-5860  ( 5860) [007] ...1   538.065270: cpu_frequency: state=300000 cpu_id=6
    644 sugov:4-5860  ( 5860) [007] ...1   538.065286: cpu_frequency: state=300000 cpu_id=7
    645 sugov:4-5860  ( 5860) [007] d..3   538.065322: sugov_set_iowait_boost: skipping iow boost
    646 sugov:4-5860  ( 5860) [007] d..3   538.065354: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=5833 next_prio=120
    647 adbd-5833  ( 5833) [007] d..4   538.065540: sugov_set_iowait_boost: skipping iow boost
    648 adbd-5833  ( 5833) [007] d..4   538.065545: sugov_set_iowait_boost: skipping iow boost
    649 adbd-5833  ( 5833) [007] d..4   538.065552: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=007
    650 adbd-5833  ( 5833) [007] d..3   538.065732: sched_switch: prev_comm=adbd prev_pid=5833 prev_prio=120 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    651 ->transport-5850  ( 5833) [007] d..3   538.065748: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=<-transport next_pid=5851 next_prio=120
    652 <-transport-5851  ( 5833) [007] d..3   538.065851: sched_switch: prev_comm=<-transport prev_pid=5851 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
    653           <idle>-0     (-----) [007] d..2   538.065892: cpu_idle: state=2 cpu_id=7
    654 <7952>-7952  (-----) [000] d..3   538.065896: sugov_set_iowait_boost: doing iow boost
    655 <7952>-7952  (-----) [000] d..3   538.065906: sched_switch: prev_comm=atrace prev_pid=7952 prev_prio=120 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
    656           <idle>-0     (-----) [000] d..2   538.065916: cpu_idle: state=0 cpu_id=0
    657           <idle>-0     (-----) [004] d.h3   538.066111: sugov_set_iowait_boost: skipping iow boost
    658           <idle>-0     (-----) [004] dnh3   538.066127: sched_wakeup: comm=sh pid=7950 prio=120 target_cpu=004
    659           <idle>-0     (-----) [004] .n.2   538.066140: cpu_idle: state=4294967295 cpu_id=4
    660           <idle>-0     (-----) [004] d..3   538.066168: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=7950 next_prio=120
    661           <idle>-0     (-----) [000] dns4   538.066594: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
    662           <idle>-0     (-----) [000] .n.2   538.066603: cpu_idle: state=4294967295 cpu_id=0
    663           <idle>-0     (-----) [000] d..3   538.066607: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
    664 rcu_preempt-7     (    7) [000] d..3   538.066623: 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
    665           <idle>-0     (-----) [000] d..2   538.066632: cpu_idle: state=2 cpu_id=0
    666           <idle>-0     (-----) [001] d.s4   538.066728: sugov_set_iowait_boost: doing iow boost
    667           <idle>-0     (-----) [001] dns4   538.066732: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
    668           <idle>-0     (-----) [001] .n.2   538.066736: cpu_idle: state=4294967295 cpu_id=1
    669           <idle>-0     (-----) [001] d..3   538.066740: 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
    670 rcu_sched-8 ( 8) [001] d..3   538.066754: 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
    671           <idle>-0     (-----) [001] d..2   538.066761: cpu_idle: state=2 cpu_id=1
    672 <7950>-7950  (-----) [004] d..4   538.066927: sugov_set_iowait_boost: skipping iow boost
    673 <7950>-7950  (-----) [004] dn.4   538.066946: sched_wakeup: comm=shell srvc 7950 pid=7951 prio=120 target_cpu=004
    674 <7950>-7950  (-----) [004] d..3   538.066969: sched_switch: prev_comm=sh prev_pid=7950 prev_prio=120 prev_state=R+ ==> next_comm=shell srvc 7950 next_pid=7951 next_prio=120
    675 <7951>-7951  (-----) [004] d..4   538.067045: sugov_set_iowait_boost: skipping iow boost
    676 <7951>-7951  (-----) [004] d..4   538.067051: sugov_set_iowait_boost: skipping iow boost
    677 <7951>-7951  (-----) [004] d..4   538.067058: sched_wakeup: comm=adbd pid=5833 prio=120 target_cpu=004
    678 <7951>-7951  (-----) [004] d..3   538.067093: sched_switch: prev_comm=shell srvc 7950 prev_pid=7951 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=5833 next_prio=120
    679 adbd-5833  ( 5833) [004] d..4   538.067283: sugov_set_iowait_boost: skipping iow boost
    680 adbd-5833  ( 5833) [004] d..4   538.067291: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=004
    681 adbd-5833  ( 5833) [004] d..3   538.067398: sched_switch: prev_comm=adbd prev_pid=5833 prev_prio=120 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    682 ->transport-5850  ( 5833) [004] d..3   538.067489: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=7950 next_prio=120
    683 <7950>-7950  (-----) [004] dn.4   538.067938: sched_wakeup: comm=shell srvc 7950 pid=7951 prio=120 target_cpu=004
    684 <7950>-7950  (-----) [004] d..3   538.067955: sched_switch: prev_comm=sh prev_pid=7950 prev_prio=120 prev_state=R+ ==> next_comm=shell srvc 7950 next_pid=7951 next_prio=120
    685 <7951>-7951  (-----) [004] d..3   538.068044: sched_switch: prev_comm=shell srvc 7950 prev_pid=7951 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=7950 next_prio=120
    686 <7950>-7950  (-----) [004] d..4   538.068102: sugov_set_iowait_boost: skipping iow boost
    687 <7950>-7950  (-----) [004] dn.4   538.068111: sched_wakeup: comm=shell srvc 7950 pid=7951 prio=120 target_cpu=004
    688 <7950>-7950  (-----) [004] d..3   538.068123: sched_switch: prev_comm=sh prev_pid=7950 prev_prio=120 prev_state=R+ ==> next_comm=shell srvc 7950 next_pid=7951 next_prio=120
    689 <7951>-7951  (-----) [004] d..3   538.068182: sched_switch: prev_comm=shell srvc 7950 prev_pid=7951 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=7950 next_prio=120
    690           <idle>-0     (-----) [000] ...2   538.068397: cpu_idle: state=4294967295 cpu_id=0
    691           <idle>-0     (-----) [000] d..2   538.068420: cpu_idle: state=0 cpu_id=0
    692           <idle>-0     (-----) [006] d.h3   538.068576: sugov_set_iowait_boost: skipping iow boost
    693           <idle>-0     (-----) [006] dnh3   538.068594: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    694           <idle>-0     (-----) [006] .n.2   538.068609: cpu_idle: state=4294967295 cpu_id=6
    695           <idle>-0     (-----) [006] d..3   538.068636: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    696 kworker/u17:1-959   (  959) [006] d..4   538.068702: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=004
    697 <7950>-7950  (-----) [004] d..3   538.068718: sched_switch: prev_comm=sh prev_pid=7950 prev_prio=120 prev_state=R+ ==> next_comm=->transport next_pid=5850 next_prio=120
    698 kworker/u17:1-959   (  959) [006] d..3   538.068758: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    699           <idle>-0     (-----) [006] d..2   538.068790: cpu_idle: state=2 cpu_id=6
    700 ->transport-5850  ( 5833) [004] d..3   538.068810: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=7950 next_prio=120
    701           <idle>-0     (-----) [000] ...2   538.068828: cpu_idle: state=4294967295 cpu_id=0
    702           <idle>-0     (-----) [000] d..2   538.068831: cpu_idle: state=0 cpu_id=0
    703           <idle>-0     (-----) [006] d.h3   538.069132: sugov_set_iowait_boost: skipping iow boost
    704           <idle>-0     (-----) [006] dnh3   538.069150: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    705           <idle>-0     (-----) [000] ...2   538.069157: cpu_idle: state=4294967295 cpu_id=0
    706           <idle>-0     (-----) [000] d..2   538.069160: cpu_idle: state=2 cpu_id=0
    707           <idle>-0     (-----) [006] .n.2   538.069163: cpu_idle: state=4294967295 cpu_id=6
    708           <idle>-0     (-----) [006] d..3   538.069188: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    709 kworker/u17:1-959   (  959) [006] d..4   538.069252: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=004
    710 <7950>-7950  (-----) [004] d..3   538.069265: sched_switch: prev_comm=sh prev_pid=7950 prev_prio=120 prev_state=R+ ==> next_comm=->transport next_pid=5850 next_prio=120
    711 kworker/u17:1-959   (  959) [006] d..3   538.069305: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    712           <idle>-0     (-----) [006] d..2   538.069341: cpu_idle: state=0 cpu_id=6
    713 ->transport-5850  ( 5833) [004] d..3   538.069349: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=7950 next_prio=120
    714 <7950>-7950  (-----) [004] dn.6   538.069417: sched_wakeup: comm=shell srvc 7950 pid=7951 prio=120 target_cpu=004
    715 <7950>-7950  (-----) [004] d..3   538.069430: sched_switch: prev_comm=sh prev_pid=7950 prev_prio=120 prev_state=R+ ==> next_comm=shell srvc 7950 next_pid=7951 next_prio=120
    716           <idle>-0     (-----) [006] dnh3   538.069583: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    717 <7951>-7951  (-----) [004] d..4   538.069588: sched_wakeup: comm=adbd pid=5833 prio=120 target_cpu=004
    718           <idle>-0     (-----) [006] .n.2   538.069594: cpu_idle: state=4294967295 cpu_id=6
    719           <idle>-0     (-----) [000] ...2   538.069597: cpu_idle: state=4294967295 cpu_id=0
    720           <idle>-0     (-----) [006] d..3   538.069610: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    721           <idle>-0     (-----) [000] d..2   538.069619: cpu_idle: state=2 cpu_id=0
    722 kworker/u17:1-959   (  959) [006] d..3   538.069728: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    723           <idle>-0     (-----) [006] d..2   538.069826: cpu_idle: state=0 cpu_id=6
    724           <idle>-0     (-----) [006] dnh3   538.069990: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    725           <idle>-0     (-----) [006] .n.2   538.070002: cpu_idle: state=4294967295 cpu_id=6
    726           <idle>-0     (-----) [006] d..3   538.070019: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    727           <idle>-0     (-----) [000] d.h3   538.070023: sugov_set_iowait_boost: doing iow boost
    728           <idle>-0     (-----) [000] dnh3   538.070051: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
    729           <idle>-0     (-----) [000] .n.2   538.070066: cpu_idle: state=4294967295 cpu_id=0
    730 <7951>-7951  (-----) [004] d..3   538.070091: sched_switch: prev_comm=shell srvc 7950 prev_pid=7951 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=5833 next_prio=120
    731           <idle>-0     (-----) [000] d..3   538.070093: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
    732 kworker/u17:1-959   (  959) [006] d..4   538.070101: sched_wakeup: comm=<-transport pid=5851 prio=120 target_cpu=007
    733 rcu_preempt-7     (    7) [000] d..5   538.070113: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
    734 rcu_preempt-7     (    7) [000] d..3   538.070130: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
    735 kworker/u17:1-959   (  959) [006] d..3   538.070137: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    736           <idle>-0     (-----) [001] d.h3   538.070148: sugov_set_iowait_boost: doing iow boost
    737           <idle>-0     (-----) [001] dnh3   538.070153: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
    738 rcuop/0-10    (   10) [000] d..4   538.070156: sched_wakeup: comm=rcuop/1 pid=20 prio=120 target_cpu=001
    739           <idle>-0     (-----) [001] .n.2   538.070160: cpu_idle: state=4294967295 cpu_id=1
    740           <idle>-0     (-----) [006] d..2   538.070164: cpu_idle: state=0 cpu_id=6
    741           <idle>-0     (-----) [001] d..3   538.070169: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=20 next_prio=120
    742 rcuop/1-20    (   20) [001] d..3   538.070204: sched_switch: prev_comm=rcuop/1 prev_pid=20 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
    743 rcu_sched-8 ( 8) [001] d..5   538.070215: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
    744 rcu_sched-8 ( 8) [001] d..3   538.070242: 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
    745 rcuop/0-10    (   10) [000] d..3   538.070252: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
    746           <idle>-0     (-----) [001] d..2   538.070256: cpu_idle: state=2 cpu_id=1
    747 rcuos/0-11    (   11) [000] d..4   538.070268: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
    748 rcuos/0-11    (   11) [000] d..3   538.070278: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
    749 adbd-5833  ( 5833) [004] d..4   538.070284: sugov_set_iowait_boost: skipping iow boost
    750           <idle>-0     (-----) [000] d..2   538.070287: cpu_idle: state=0 cpu_id=0
    751           <idle>-0     (-----) [007] .n.2   538.070295: cpu_idle: state=4294967295 cpu_id=7
    752 adbd-5833  ( 5833) [004] d..4   538.070296: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=004
    753           <idle>-0     (-----) [007] d..3   538.070332: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=<-transport next_pid=5851 next_prio=120
    754           <idle>-0     (-----) [001] .n.2   538.070419: cpu_idle: state=4294967295 cpu_id=1
    755           <idle>-0     (-----) [001] d..3   538.070426: 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
    756 rcu_sched-8 ( 8) [001] d..3   538.070432: sugov_set_iowait_boost: doing iow boost
    757 rcu_sched-8 ( 8) [001] d..3   538.070441: 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
    758           <idle>-0     (-----) [001] d..2   538.070448: cpu_idle: state=2 cpu_id=1
    759 <-transport-5851  ( 5833) [007] d..3   538.070509: sched_switch: prev_comm=<-transport prev_pid=5851 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
    760           <idle>-0     (-----) [006] ...2   538.070513: cpu_idle: state=4294967295 cpu_id=6
    761           <idle>-0     (-----) [006] d..2   538.070526: cpu_idle: state=0 cpu_id=6
    762           <idle>-0     (-----) [007] d..2   538.070551: cpu_idle: state=2 cpu_id=7
    763 adbd-5833  ( 5833) [004] d..3   538.070648: sched_switch: prev_comm=adbd prev_pid=5833 prev_prio=120 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    764           <idle>-0     (-----) [000] ...2   538.070709: cpu_idle: state=4294967295 cpu_id=0
    765           <idle>-0     (-----) [000] d..2   538.070713: cpu_idle: state=0 cpu_id=0
    766 ->transport-5850  ( 5833) [004] d..3   538.070735: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=7950 next_prio=120
    767           <idle>-0     (-----) [000] ...2   538.070753: cpu_idle: state=4294967295 cpu_id=0
    768           <idle>-0     (-----) [000] d..2   538.070756: cpu_idle: state=0 cpu_id=0
    769           <idle>-0     (-----) [006] d.h3   538.070760: sugov_set_iowait_boost: skipping iow boost
    770           <idle>-0     (-----) [006] dnh3   538.070769: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    771 <7950>-7950  (-----) [004] d..3   538.070773: sched_switch: prev_comm=sh prev_pid=7950 prev_prio=120 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
    772           <idle>-0     (-----) [006] .n.2   538.070777: cpu_idle: state=4294967295 cpu_id=6
    773           <idle>-0     (-----) [006] d..3   538.070790: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    774           <idle>-0     (-----) [004] d..2   538.070816: cpu_idle: state=2 cpu_id=4
    775 kworker/u17:1-959   (  959) [006] d..4   538.070848: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=004
    776 kworker/u17:1-959   (  959) [006] d..3   538.070886: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    777           <idle>-0     (-----) [000] ...2   538.070903: cpu_idle: state=4294967295 cpu_id=0
    778           <idle>-0     (-----) [000] d..2   538.070907: cpu_idle: state=2 cpu_id=0
    779           <idle>-0     (-----) [006] dnh4   538.070909: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    780           <idle>-0     (-----) [006] d..3   538.070924: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    781 kworker/u17:1-959   (  959) [006] d..3   538.070962: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    782           <idle>-0     (-----) [006] d..2   538.070987: cpu_idle: state=0 cpu_id=6
    783           <idle>-0     (-----) [004] .n.2   538.071165: cpu_idle: state=4294967295 cpu_id=4
    784           <idle>-0     (-----) [004] d..3   538.071202: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=->transport next_pid=5850 next_prio=120
    785 ->transport-5850  ( 5833) [004] d..3   538.071335: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
    786           <idle>-0     (-----) [006] ...2   538.071349: cpu_idle: state=4294967295 cpu_id=6
    787           <idle>-0     (-----) [006] d..2   538.071361: cpu_idle: state=0 cpu_id=6
    788           <idle>-0     (-----) [004] d..2   538.071371: cpu_idle: state=0 cpu_id=4
    789           <idle>-0     (-----) [006] ...2   538.071727: cpu_idle: state=4294967295 cpu_id=6
    790           <idle>-0     (-----) [006] d..2   538.071738: cpu_idle: state=0 cpu_id=6
    791           <idle>-0     (-----) [004] ...2   538.071811: cpu_idle: state=4294967295 cpu_id=4
    792           <idle>-0     (-----) [004] d..2   538.071824: cpu_idle: state=0 cpu_id=4
    793           <idle>-0     (-----) [006] ...2   538.072129: cpu_idle: state=4294967295 cpu_id=6
    794           <idle>-0     (-----) [006] d..2   538.072139: cpu_idle: state=0 cpu_id=6
    795           <idle>-0     (-----) [004] ...2   538.072317: cpu_idle: state=4294967295 cpu_id=4
    796           <idle>-0     (-----) [004] d..2   538.072328: cpu_idle: state=0 cpu_id=4
    797           <idle>-0     (-----) [006] d.h3   538.072550: sugov_set_iowait_boost: skipping iow boost
    798           <idle>-0     (-----) [006] dnh3   538.072556: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    799           <idle>-0     (-----) [000] ...2   538.072561: cpu_idle: state=4294967295 cpu_id=0
    800           <idle>-0     (-----) [006] .n.2   538.072571: cpu_idle: state=4294967295 cpu_id=6
    801           <idle>-0     (-----) [000] d..2   538.072582: cpu_idle: state=2 cpu_id=0
    802           <idle>-0     (-----) [006] d..3   538.072585: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    803 kworker/u17:1-959   (  959) [006] d..4   538.072642: sugov_set_iowait_boost: skipping iow boost
    804 kworker/u17:1-959   (  959) [006] d..4   538.072649: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=006
    805 kworker/u17:1-959   (  959) [006] d..3   538.072684: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    806           <idle>-0     (-----) [004] ...2   538.072858: cpu_idle: state=4294967295 cpu_id=4
    807 ->transport-5850  ( 5833) [006] d..3   538.072865: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    808           <idle>-0     (-----) [004] d..2   538.072869: cpu_idle: state=0 cpu_id=4
    809           <idle>-0     (-----) [006] d..2   538.072904: cpu_idle: state=0 cpu_id=6
    810           <idle>-0     (-----) [006] dnh3   538.073018: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    811           <idle>-0     (-----) [006] .n.2   538.073027: cpu_idle: state=4294967295 cpu_id=6
    812           <idle>-0     (-----) [000] ...2   538.073029: cpu_idle: state=4294967295 cpu_id=0
    813           <idle>-0     (-----) [006] d..3   538.073043: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    814           <idle>-0     (-----) [000] d..2   538.073051: cpu_idle: state=2 cpu_id=0
    815 kworker/u17:1-959   (  959) [006] d..4   538.073107: sched_wakeup: comm=<-transport pid=5851 prio=120 target_cpu=007
    816 kworker/u17:1-959   (  959) [006] d..4   538.073139: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=006
    817 kworker/u17:1-959   (  959) [006] d..3   538.073163: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    818           <idle>-0     (-----) [007] .n.2   538.073301: cpu_idle: state=4294967295 cpu_id=7
    819 ->transport-5850  ( 5833) [006] d.h5   538.073335: sugov_set_iowait_boost: skipping iow boost
    820           <idle>-0     (-----) [007] d..3   538.073339: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=<-transport next_pid=5851 next_prio=120
    821 ->transport-5850  ( 5833) [006] d.h5   538.073345: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=006
    822           <idle>-0     (-----) [004] ...2   538.073414: cpu_idle: state=4294967295 cpu_id=4
    823 ->transport-5850  ( 5833) [006] d..3   538.073418: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    824           <idle>-0     (-----) [004] d..2   538.073430: cpu_idle: state=0 cpu_id=4
    825 kworker/u16:11-682   (  682) [006] d.h4   538.073434: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    826 <-transport-5851  ( 5833) [007] d..4   538.073438: sugov_set_iowait_boost: skipping iow boost
    827 <-transport-5851  ( 5833) [007] d..4   538.073455: sched_wakeup: comm=adbd pid=5833 prio=120 target_cpu=007
    828 kworker/u16:11-682   (  682) [006] d..5   538.073459: sched_wakeup: comm=kworker/6:0 pid=6528 prio=120 target_cpu=006
    829 kworker/u16:11-682   (  682) [006] d..3   538.073472: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/6:0 next_pid=6528 next_prio=120
    830           <idle>-0     (-----) [000] ...2   538.073494: cpu_idle: state=4294967295 cpu_id=0
    831 kworker/6:0-6528  ( 6528) [006] d..3   538.073495: sched_switch: prev_comm=kworker/6:0 prev_pid=6528 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    832           <idle>-0     (-----) [000] d..2   538.073508: cpu_idle: state=0 cpu_id=0
    833 kworker/u17:1-959   (  959) [006] d..3   538.073539: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    834 <-transport-5851  ( 5833) [007] d..3   538.073551: sched_switch: prev_comm=<-transport prev_pid=5851 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=5833 next_prio=120
    835           <idle>-0     (-----) [000] ...2   538.073560: cpu_idle: state=4294967295 cpu_id=0
    836           <idle>-0     (-----) [000] d..2   538.073562: cpu_idle: state=0 cpu_id=0
    837           <idle>-0     (-----) [006] dnh3   538.073573: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    838           <idle>-0     (-----) [006] d..3   538.073591: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    839 kworker/u17:1-959   (  959) [006] d..4   538.073629: sugov_set_iowait_boost: skipping iow boost
    840 kworker/u17:1-959   (  959) [006] d..4   538.073636: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=006
    841 kworker/u17:1-959   (  959) [006] d..3   538.073662: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    842           <idle>-0     (-----) [000] ...2   538.073675: cpu_idle: state=4294967295 cpu_id=0
    843           <idle>-0     (-----) [000] d..2   538.073678: cpu_idle: state=0 cpu_id=0
    844 ->transport-5850  ( 5833) [006] dnh3   538.073682: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    845 ->transport-5850  ( 5833) [006] d..3   538.073694: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    846 kworker/u17:1-959   (  959) [006] d..4   538.073748: sched_wakeup: comm=<-transport pid=5851 prio=120 target_cpu=007
    847 kworker/u17:1-959   (  959) [006] d..3   538.073771: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    848 adbd-5833  ( 5833) [007] d..3   538.073849: sugov_set_iowait_boost: skipping iow boost
    849 adbd-5833  ( 5833) [007] d..3   538.073865: sched_switch: prev_comm=adbd prev_pid=5833 prev_prio=120 prev_state=S ==> next_comm=<-transport next_pid=5851 next_prio=120
    850           <idle>-0     (-----) [000] ...2   538.073912: cpu_idle: state=4294967295 cpu_id=0
    851 ->transport-5850  ( 5833) [006] d..3   538.073913: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    852           <idle>-0     (-----) [000] d..2   538.073915: cpu_idle: state=0 cpu_id=0
    853           <idle>-0     (-----) [006] dnh4   538.073928: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    854 <-transport-5851  ( 5833) [007] d..4   538.073935: sched_wakeup: comm=adbd pid=5833 prio=120 target_cpu=007
    855           <idle>-0     (-----) [006] d..3   538.073941: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    856 kworker/u17:1-959   (  959) [006] d..4   538.073977: sched_wakeup: comm=->transport pid=5850 prio=120 target_cpu=006
    857 <-transport-5851  ( 5833) [007] d..3   538.073990: sched_switch: prev_comm=<-transport prev_pid=5851 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=5833 next_prio=120
    858           <idle>-0     (-----) [004] ...2   538.073994: cpu_idle: state=4294967295 cpu_id=4
    859 kworker/u17:1-959   (  959) [006] d..3   538.074000: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    860           <idle>-0     (-----) [004] d..2   538.074004: cpu_idle: state=0 cpu_id=4
    861           <idle>-0     (-----) [000] ...2   538.074015: cpu_idle: state=4294967295 cpu_id=0
    862           <idle>-0     (-----) [000] d..2   538.074019: cpu_idle: state=0 cpu_id=0
    863 ->transport-5850  ( 5833) [006] dnh2   538.074020: sched_wakeup: comm=kworker/u17:1 pid=959 prio=100 target_cpu=006
    864 ->transport-5850  ( 5833) [006] d..3   538.074030: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=959 next_prio=100
    865 kworker/u17:1-959   (  959) [006] d..3   538.074060: sched_switch: prev_comm=kworker/u17:1 prev_pid=959 prev_prio=100 prev_state=S ==> next_comm=->transport next_pid=5850 next_prio=120
    866 ->transport-5850  ( 5833) [006] d..3   538.074130: sched_switch: prev_comm=->transport prev_pid=5850 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    867           <idle>-0     (-----) [006] d..2   538.074167: cpu_idle: state=2 cpu_id=6
    868           <idle>-0     (-----) [000] ...2   538.074222: cpu_idle: state=4294967295 cpu_id=0
    869           <idle>-0     (-----) [000] d..2   538.074224: cpu_idle: state=2 cpu_id=0
    870 adbd-5833  ( 5833) [007] d..3   538.074232: sched_switch: prev_comm=adbd prev_pid=5833 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
    871           <idle>-0     (-----) [007] d..2   538.074276: cpu_idle: state=2 cpu_id=7
    872           <idle>-0     (-----) [004] ...2   538.074611: cpu_idle: state=4294967295 cpu_id=4
    873           <idle>-0     (-----) [004] d..2   538.074621: cpu_idle: state=0 cpu_id=4
    874           <idle>-0     (-----) [004] ...2   538.075264: cpu_idle: state=4294967295 cpu_id=4
    875           <idle>-0     (-----) [004] d..2   538.075270: cpu_idle: state=2 cpu_id=4
    876           <idle>-0     (-----) [001] d.s4   538.076857: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
    877           <idle>-0     (-----) [001] d.s3   538.076871: sugov_set_iowait_boost: doing iow boost
    878           <idle>-0     (-----) [001] ...2   538.076902: cpu_idle: state=4294967295 cpu_id=1
    879           <idle>-0     (-----) [000] dns4   538.076905: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
    880           <idle>-0     (-----) [001] d..2   538.076906: cpu_idle: state=2 cpu_id=1
    881           <idle>-0     (-----) [000] .n.2   538.076912: cpu_idle: state=4294967295 cpu_id=0
    882           <idle>-0     (-----) [000] d..3   538.076929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
    883 rcu_preempt-7     (    7) [000] d..5   538.076955: sched_wakeup: comm=rcuop/2 pid=28 prio=120 target_cpu=001
    884 rcu_preempt-7     (    7) [000] d..5   538.076961: sched_wakeup: comm=rcuop/4 pid=44 prio=120 target_cpu=001
    885 rcu_preempt-7     (    7) [000] d..5   538.076974: sched_wakeup: comm=rcuop/6 pid=60 prio=120 target_cpu=000
    886 rcu_preempt-7     (    7) [000] d..3   538.076988: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=60 next_prio=120
    887 rcuop/6-60    (   60) [000] d..4   538.076997: sched_wakeup: comm=rcuop/7 pid=68 prio=120 target_cpu=001
    888 rcuop/6-60    (   60) [000] d..3   538.077038: sched_switch: prev_comm=rcuop/6 prev_pid=60 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
    889 rcu_sched-8 ( 8) [000] d..3   538.077051: 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
    890           <idle>-0     (-----) [000] d..2   538.077062: cpu_idle: state=0 cpu_id=0
    891           <idle>-0     (-----) [001] .n.2   538.077067: cpu_idle: state=4294967295 cpu_id=1
    892           <idle>-0     (-----) [001] d..3   538.077076: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=44 next_prio=120
    893 rcuop/4-44    (   44) [001] d..4   538.077093: sugov_set_iowait_boost: doing iow boost
    894 rcuop/4-44    (   44) [001] d..4   538.077096: sched_wakeup: comm=rcuop/5 pid=52 prio=120 target_cpu=001
    895 rcuop/4-44    (   44) [001] d..3   538.077104: sched_switch: prev_comm=rcuop/4 prev_pid=44 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=52 next_prio=120
    896 rcuop/5-52 ( 52) [001] d..3   538.077148: sched_switch: prev_comm=rcuop/5 prev_pid=52 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=28 next_prio=120
    897 rcuop/2-28    (   28) [001] d..3   538.077156: sched_switch: prev_comm=rcuop/2 prev_pid=28 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=68 next_prio=120
    898 rcuop/7-68 ( 68) [001] d..3   538.077168: sched_switch: prev_comm=rcuop/7 prev_pid=68 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
    899           <idle>-0     (-----) [001] d..2   538.077176: cpu_idle: state=2 cpu_id=1
    900           <idle>-0     (-----) [000] ...2   538.077260: cpu_idle: state=4294967295 cpu_id=0
    901           <idle>-0     (-----) [000] d..2   538.077264: cpu_idle: state=0 cpu_id=0
    902           <idle>-0     (-----) [000] ...2   538.077509: cpu_idle: state=4294967295 cpu_id=0
    903           <idle>-0     (-----) [000] d..2   538.077511: cpu_idle: state=2 cpu_id=0
    904           <idle>-0     (-----) [004] d..4   538.080222: sugov_set_iowait_boost: skipping iow boost
    905           <idle>-0     (-----) [004] dn.4   538.080238: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
    906           <idle>-0     (-----) [004] .n.2   538.080248: cpu_idle: state=4294967295 cpu_id=4
    907           <idle>-0     (-----) [004] d..3   538.080278: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
    908 ksoftirqd/4-41 ( 41) [004] d..3   538.080333: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
    909           <idle>-0     (-----) [004] d..2   538.080365: cpu_idle: state=0 cpu_id=4
    910           <idle>-0     (-----) [004] ...2   538.081025: cpu_idle: state=4294967295 cpu_id=4
    911           <idle>-0     (-----) [004] d..2   538.081033: cpu_idle: state=2 cpu_id=4
    912           <idle>-0     (-----) [000] d.s4   538.084149: sugov_set_iowait_boost: doing iow boost
    913           <idle>-0     (-----) [000] dns4   538.084165: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
    914           <idle>-0     (-----) [000] dnH6   538.084182: sched_wakeup: comm=sugov:0 pid=5859 prio=49 target_cpu=000
    915           <idle>-0     (-----) [000] dns4   538.084190: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
    916           <idle>-0     (-----) [000] .n.2   538.084215: cpu_idle: state=4294967295 cpu_id=0
    917           <idle>-0     (-----) [000] d..3   538.084229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=5859 next_prio=49
    918 sugov:0-5859  ( 5859) [000] ...1   538.084248: clock_set_rate: pwrcl_clk state=518400000 cpu_id=0
    919 sugov:0-5859  ( 5859) [000] ...1   538.084256: cpu_frequency: state=518400 cpu_id=0
    920 sugov:0-5859  ( 5859) [000] ...1   538.084265: cpu_frequency: state=518400 cpu_id=1
    921 sugov:0-5859  ( 5859) [000] ...1   538.084267: cpu_frequency: state=518400 cpu_id=2
    922 sugov:0-5859  ( 5859) [000] ...1   538.084270: cpu_frequency: state=518400 cpu_id=3
    923 sugov:0-5859  ( 5859) [000] d..3   538.084277: sugov_set_iowait_boost: doing iow boost
    924 sugov:0-5859  ( 5859) [000] d..3   538.084310: sched_switch: prev_comm=sugov:0 prev_pid=5859 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
    925 rcu_preempt-7     (    7) [000] d..5   538.084369: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
    926 rcu_preempt-7     (    7) [000] d..3   538.084417: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
    927 rcuop/0-10    (   10) [000] d..4   538.084487: sched_wakeup: comm=rcuop/1 pid=20 prio=120 target_cpu=001
    928           <idle>-0     (-----) [001] .n.2   538.084635: cpu_idle: state=4294967295 cpu_id=1
    929           <idle>-0     (-----) [001] d..3   538.084660: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=20 next_prio=120
    930 rcuop/1-20    (   20) [001] d..3   538.084702: sched_switch: prev_comm=rcuop/1 prev_pid=20 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
    931           <idle>-0     (-----) [001] d..2   538.084735: cpu_idle: state=2 cpu_id=1
    932 rcuop/0-10    (   10) [000] d..3   538.084753: sugov_set_iowait_boost: doing iow boost
    933 rcuop/0-10    (   10) [000] d..3   538.084764: 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
    934 rcu_sched-8 ( 8) [000] d..5   538.084785: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
    935 rcu_sched-8 ( 8) [000] d..3   538.084799: 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
    936 rcuos/0-11    (   11) [000] d..3   538.084830: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
    937           <idle>-0     (-----) [000] d..2   538.084856: cpu_idle: state=2 cpu_id=0
    938           <idle>-0     (-----) [000] d.s6   538.085285: sugov_set_iowait_boost: doing iow boost
    939           <idle>-0     (-----) [000] dns6   538.085298: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
    940           <idle>-0     (-----) [000] dnH6   538.085317: sched_wakeup: comm=sugov:0 pid=5859 prio=49 target_cpu=000
    941           <idle>-0     (-----) [000] .n.2   538.085328: cpu_idle: state=4294967295 cpu_id=0
    942           <idle>-0     (-----) [000] d..3   538.085342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=5859 next_prio=49
    943 sugov:0-5859  ( 5859) [000] ...1   538.085360: cpu_frequency: state=518400 cpu_id=0
    944 sugov:0-5859  ( 5859) [000] ...1   538.085370: cpu_frequency: state=518400 cpu_id=1
    945 sugov:0-5859  ( 5859) [000] ...1   538.085378: cpu_frequency: state=518400 cpu_id=2
    946 sugov:0-5859  ( 5859) [000] ...1   538.085385: cpu_frequency: state=518400 cpu_id=3
    947 sugov:0-5859  ( 5859) [000] d..3   538.085403: sched_switch: prev_comm=sugov:0 prev_pid=5859 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
    948 kworker/u16:11-682   (  682) [000] d..3   538.085638: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
    949           <idle>-0     (-----) [000] d..2   538.085663: cpu_idle: state=2 cpu_id=0
    950           <idle>-0     (-----) [004] d.h3   538.086354: sugov_set_iowait_boost: skipping iow boost
    951           <idle>-0     (-----) [006] d.h3   538.086380: sugov_set_iowait_boost: skipping iow boost
    952           <idle>-0     (-----) [004] dnh3   538.086381: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=004
    953           <idle>-0     (-----) [004] .n.2   538.086398: cpu_idle: state=4294967295 cpu_id=4
    954           <idle>-0     (-----) [006] dnh3   538.086398: sched_wakeup: comm=sensors (a] 1.0-ser pid=1593 prio=120 target_cpu=006
    955           <idle>-0     (-----) [006] .n.2   538.086411: cpu_idle: state=4294967295 cpu_id=6
    956           <idle>-0     (-----) [004] d..3   538.086439: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
    957           <idle>-0     (-----) [006] d..3   538.086442: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sensors (a] 1.0-ser next_pid=1593 next_prio=120
    958 kworker/u16:12-1014 ( 1014) [004] d..3   538.086499: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
    959           <idle>-0     (-----) [004] d..2   538.086536: cpu_idle: state=2 cpu_id=4
    960 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.086826: sched_wakeup: comm=android.hardwar pid=951 prio=120 target_cpu=005
    961           <idle>-0     (-----) [000] d.h3   538.086828: sugov_set_iowait_boost: doing iow boost
    962           <idle>-0     (-----) [000] dnh3   538.086839: sched_wakeup: comm=rcuop/6 pid=60 prio=120 target_cpu=000
    963           <idle>-0     (-----) [000] .n.2   538.086848: cpu_idle: state=4294967295 cpu_id=0
    964           <idle>-0     (-----) [000] d..3   538.086866: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=60 next_prio=120
    965 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.086885: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=1593 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
    966 rcuop/6-60    (   60) [000] d..3   538.086902: sched_switch: prev_comm=rcuop/6 prev_pid=60 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
    967           <idle>-0     (-----) [006] d..2   538.086921: cpu_idle: state=2 cpu_id=6
    968           <idle>-0     (-----) [000] d..2   538.086923: cpu_idle: state=2 cpu_id=0
    969           <idle>-0     (-----) [005] .n.2   538.087015: cpu_idle: state=4294967295 cpu_id=5
    970           <idle>-0     (-----) [005] d..3   538.087055: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.hardwar next_pid=951 next_prio=120
    971 android.hardwar-951 ( 706) [005] d..3   538.087161: sched_wakeup: comm=android.hardwar pid=1066 prio=120 target_cpu=007
    972 android.hardwar-951 ( 706) [005] d..3   538.087217: sched_switch: prev_comm=android.hardwar prev_pid=951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
    973           <idle>-0     (-----) [005] d..2   538.087253: cpu_idle: state=2 cpu_id=5
    974           <idle>-0     (-----) [007] .n.2   538.087353: cpu_idle: state=4294967295 cpu_id=7
    975           <idle>-0     (-----) [007] d..3   538.087392: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.hardwar next_pid=1066 next_prio=120
    976 android.hardwar-1066 ( 706) [007] dn.3   538.087452: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
    977 android.hardwar-1066 ( 706) [007] dn.3   538.087467: sugov_set_iowait_boost: skipping iow boost
    978 android.hardwar-1066 ( 706) [007] d..3   538.087477: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
    979 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.087505: sugov_set_iowait_boost: skipping iow boost
    980 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.087521: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
    981 android.hardwar-1066 ( 706) [007] dn.3   538.087539: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
    982 android.hardwar-1066 ( 706) [007] d..3   538.087548: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
    983 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.087680: sugov_set_iowait_boost: skipping iow boost
    984 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.087703: sugov_set_iowait_boost: skipping iow boost
    985 sensors (a] 1.0-ser-706   (  706) [007] dnh6   538.087728: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=007
    986 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.087743: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=5860 next_prio=49
    987 sugov:4-5860  ( 5860) [007] ...1   538.087776: clock_set_rate: perfcl_clk state=499200000 cpu_id=7
    988 sugov:4-5860  ( 5860) [007] ...1   538.087785: cpu_frequency: state=499200 cpu_id=4
    989 sugov:4-5860  ( 5860) [007] ...1   538.087804: cpu_frequency: state=499200 cpu_id=5
    990 sugov:4-5860  ( 5860) [007] ...1   538.087814: cpu_frequency: state=499200 cpu_id=6
    991 sugov:4-5860  ( 5860) [007] ...1   538.087822: cpu_frequency: state=499200 cpu_id=7
    992           <idle>-0     (-----) [001] dnh3   538.087832: sched_wakeup: comm=SensorService pid=1307 prio=89 target_cpu=001
    993 sugov:4-5860  ( 5860) [007] d..3   538.087835: sugov_set_iowait_boost: skipping iow boost
    994           <idle>-0     (-----) [001] .n.2   538.087843: cpu_idle: state=4294967295 cpu_id=1
    995 sugov:4-5860  ( 5860) [007] d..3   538.087848: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
    996           <idle>-0     (-----) [001] d..3   538.087859: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SensorService next_pid=1307 next_prio=89
    997 android.hardwar-1066 ( 706) [007] d..3   538.087868: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=S ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=120
    998 sensors (a] 1.0-ser-706   (  706) [007] d..4   538.087914: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=004
    999 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.087976: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1000           <idle>-0     (-----) [007] d..2   538.087998: cpu_idle: state=2 cpu_id=7
   1001           <idle>-0     (-----) [004] .n.2   538.088062: cpu_idle: state=4294967295 cpu_id=4
   1002           <idle>-0     (-----) [004] d..3   538.088084: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1003 kworker/u16:12-1014 ( 1014) [004] d..3   538.088150: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1004           <idle>-0     (-----) [004] d..2   538.088170: cpu_idle: state=2 cpu_id=4
   1005           <idle>-0     (-----) [005] d.h3   538.088238: sugov_set_iowait_boost: skipping iow boost
   1006           <idle>-0     (-----) [005] dnh3   538.088249: sched_wakeup: comm=android.youtube pid=7459 prio=110 target_cpu=005
   1007           <idle>-0     (-----) [005] .n.2   538.088257: cpu_idle: state=4294967295 cpu_id=5
   1008           <idle>-0     (-----) [005] d..3   538.088272: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.youtube next_pid=7459 next_prio=110
   1009 android.youtube-7459 ( 7459) [005] d..3   538.088472: sugov_set_iowait_boost: skipping iow boost
   1010 android.youtube-7459 ( 7459) [005] d..3   538.088497: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   1011           <idle>-0     (-----) [005] d..2   538.088521: cpu_idle: state=0 cpu_id=5
   1012 SensorService-1307 ( 1118) [001] d..3   538.088535: sugov_set_iowait_boost: doing iow boost
   1013 SensorService-1307 ( 1118) [001] d..3   538.088554: sugov_set_iowait_boost: doing iow boost
   1014 SensorService-1307 ( 1118) [001] d..3   538.088575: sugov_set_iowait_boost: doing iow boost
   1015 SensorService-1307 ( 1118) [001] d..3   538.088583: sched_switch: prev_comm=SensorService prev_pid=1307 prev_prio=89 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1016           <idle>-0     (-----) [001] d..2   538.088609: cpu_idle: state=2 cpu_id=1
   1017           <idle>-0     (-----) [007] dnh3   538.088671: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1018           <idle>-0     (-----) [007] .n.2   538.088684: cpu_idle: state=4294967295 cpu_id=7
   1019           <idle>-0     (-----) [007] d..3   538.088697: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1020 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.088749: sugov_set_iowait_boost: skipping iow boost
   1021 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.088763: sugov_set_iowait_boost: skipping iow boost
   1022 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.088778: sugov_set_iowait_boost: skipping iow boost
   1023 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.088783: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1024           <idle>-0     (-----) [007] d..2   538.088804: cpu_idle: state=2 cpu_id=7
   1025           <idle>-0     (-----) [005] ...2   538.089145: cpu_idle: state=4294967295 cpu_id=5
   1026           <idle>-0     (-----) [005] d..2   538.089154: cpu_idle: state=0 cpu_id=5
   1027           <idle>-0     (-----) [005] ...2   538.089773: cpu_idle: state=4294967295 cpu_id=5
   1028           <idle>-0     (-----) [005] d..2   538.089778: cpu_idle: state=2 cpu_id=5
   1029           <idle>-0     (-----) [000] d.h5   538.090172: sugov_set_iowait_boost: doing iow boost
   1030           <idle>-0     (-----) [000] d.h5   538.090178: sugov_set_iowait_boost: doing iow boost
   1031           <idle>-0     (-----) [000] dnh5   538.090186: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1032           <idle>-0     (-----) [000] dns4   538.090209: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1033           <idle>-0     (-----) [000] .n.2   538.090222: cpu_idle: state=4294967295 cpu_id=0
   1034           <idle>-0     (-----) [000] d..3   538.090234: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   1035 rcu_preempt-7     (    7) [000] d..5   538.090280: sched_wakeup: comm=rcuop/4 pid=44 prio=120 target_cpu=001
   1036 rcu_preempt-7     (    7) [000] d..3   538.090298: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1037 kworker/u16:12-1014 ( 1014) [000] d..5   538.090323: sched_wakeup: comm=kworker/0:4 pid=6999 prio=120 target_cpu=000
   1038 kworker/u16:12-1014 ( 1014) [000] d..3   538.090336: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/0:4 next_pid=6999 next_prio=120
   1039 kworker/0:4-6999 ( 6999) [000] d..3   538.090379: sched_switch: prev_comm=kworker/0:4 prev_pid=6999 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1040           <idle>-0     (-----) [000] d..2   538.090403: cpu_idle: state=2 cpu_id=0
   1041           <idle>-0     (-----) [001] .n.2   538.090438: cpu_idle: state=4294967295 cpu_id=1
   1042           <idle>-0     (-----) [001] d..3   538.090459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=44 next_prio=120
   1043 rcuop/4-44    (   44) [001] d..3   538.090646: sugov_set_iowait_boost: doing iow boost
   1044 rcuop/4-44    (   44) [001] d..3   538.090671: sched_switch: prev_comm=rcuop/4 prev_pid=44 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1045           <idle>-0     (-----) [001] d..2   538.090702: cpu_idle: state=2 cpu_id=1
   1046           <idle>-0     (-----) [000] d.s4   538.097527: sugov_set_iowait_boost: doing iow boost
   1047           <idle>-0     (-----) [000] dns4   538.097548: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1048           <idle>-0     (-----) [000] .n.2   538.097587: cpu_idle: state=4294967295 cpu_id=0
   1049           <idle>-0     (-----) [000] d..3   538.097617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   1050 rcu_preempt-7     (    7) [000] d..5   538.097655: sched_wakeup: comm=rcuop/6 pid=60 prio=120 target_cpu=000
   1051 rcu_preempt-7     (    7) [000] d..5   538.097670: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   1052 rcu_preempt-7     (    7) [000] d..3   538.097689: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=60 next_prio=120
   1053 rcuop/6-60    (   60) [000] d..3   538.097735: sugov_set_iowait_boost: doing iow boost
   1054 rcuop/6-60    (   60) [000] d..3   538.097745: sched_switch: prev_comm=rcuop/6 prev_pid=60 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   1055 rcuop/0-10    (   10) [000] d..4   538.097773: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1056 rcuop/0-10    (   10) [000] d..3   538.097786: 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
   1057 rcu_preempt-7     (    7) [000] d..3   538.097821: 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
   1058           <idle>-0     (-----) [000] d..2   538.097856: cpu_idle: state=2 cpu_id=0
   1059           <idle>-0     (-----) [000] d.s4   538.103453: sugov_set_iowait_boost: doing iow boost
   1060           <idle>-0     (-----) [000] dns4   538.103463: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1061           <idle>-0     (-----) [000] .n.2   538.103477: cpu_idle: state=4294967295 cpu_id=0
   1062           <idle>-0     (-----) [000] d..3   538.103494: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   1063 rcu_preempt-7     (    7) [000] d..5   538.103518: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   1064 rcu_preempt-7     (    7) [000] d..3   538.103532: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   1065 rcuop/0-10    (   10) [000] d..4   538.103579: sched_wakeup: comm=rcuop/1 pid=20 prio=120 target_cpu=001
   1066 rcuop/0-10    (   10) [000] d..3   538.103605: 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
   1067           <idle>-0     (-----) [000] d..2   538.103630: cpu_idle: state=2 cpu_id=0
   1068           <idle>-0     (-----) [001] .n.2   538.103739: cpu_idle: state=4294967295 cpu_id=1
   1069           <idle>-0     (-----) [001] d..3   538.103768: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=20 next_prio=120
   1070 rcuop/1-20    (   20) [001] d..3   538.103817: sugov_set_iowait_boost: doing iow boost
   1071 rcuop/1-20    (   20) [001] d..3   538.103843: sched_switch: prev_comm=rcuop/1 prev_pid=20 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1072           <idle>-0     (-----) [001] d..2   538.103871: cpu_idle: state=2 cpu_id=1
   1073           <idle>-0     (-----) [004] d.h4   538.108990: sugov_set_iowait_boost: skipping iow boost
   1074           <idle>-0     (-----) [004] dnh4   538.109011: sched_wakeup: comm=ChromiumNet pid=7539 prio=120 target_cpu=004
   1075           <idle>-0     (-----) [004] dnh5   538.109045: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   1076           <idle>-0     (-----) [004] .n.2   538.109055: cpu_idle: state=4294967295 cpu_id=4
   1077           <idle>-0     (-----) [004] d..3   538.109080: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1078 sugov:4-5860  ( 5860) [004] ...1   538.109106: clock_set_rate: perfcl_clk state=345600000 cpu_id=4
   1079 sugov:4-5860  ( 5860) [004] ...1   538.109116: cpu_frequency: state=345600 cpu_id=4
   1080 sugov:4-5860  ( 5860) [004] ...1   538.109130: cpu_frequency: state=345600 cpu_id=5
   1081 sugov:4-5860  ( 5860) [004] ...1   538.109138: cpu_frequency: state=345600 cpu_id=6
   1082 sugov:4-5860  ( 5860) [004] ...1   538.109146: cpu_frequency: state=345600 cpu_id=7
   1083 sugov:4-5860  ( 5860) [004] d..3   538.109163: sugov_set_iowait_boost: skipping iow boost
   1084 sugov:4-5860  ( 5860) [004] d..3   538.109185: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=ChromiumNet next_pid=7539 next_prio=120
   1085 ChromiumNet-7539 ( 7459) [004] d..3   538.109575: sugov_set_iowait_boost: skipping iow boost
   1086 ChromiumNet-7539 ( 7459) [004] d..3   538.109617: sched_switch: prev_comm=ChromiumNet prev_pid=7539 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1087           <idle>-0     (-----) [004] dn.4   538.109642: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
   1088           <idle>-0     (-----) [004] d..3   538.109653: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
   1089 ksoftirqd/4-41 ( 41) [004] d..3   538.109688: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1090           <idle>-0     (-----) [004] d..2   538.109721: cpu_idle: state=2 cpu_id=4
   1091           <idle>-0     (-----) [001] d.h3   538.111282: sugov_set_iowait_boost: doing iow boost
   1092           <idle>-0     (-----) [001] dnh3   538.111306: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   1093           <idle>-0     (-----) [001] .n.2   538.111322: cpu_idle: state=4294967295 cpu_id=1
   1094           <idle>-0     (-----) [001] d..3   538.111359: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   1095 smem_native_rpm-87    (   87) [001] d..3   538.111457: sugov_set_iowait_boost: doing iow boost
   1096 smem_native_rpm-87    (   87) [001] d..3   538.111491: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1097           <idle>-0     (-----) [001] dn.4   538.111516: sched_wakeup: comm=ksoftirqd/1 pid=17 prio=120 target_cpu=001
   1098           <idle>-0     (-----) [001] d..3   538.111526: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=17 next_prio=120
   1099 ksoftirqd/1-17 ( 17) [001] d..3   538.111560: sched_switch: prev_comm=ksoftirqd/1 prev_pid=17 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1100           <idle>-0     (-----) [001] d..2   538.111589: cpu_idle: state=2 cpu_id=1
   1101           <idle>-0     (-----) [004] ...2   538.112217: cpu_idle: state=4294967295 cpu_id=4
   1102           <idle>-0     (-----) [004] d..2   538.112242: cpu_idle: state=2 cpu_id=4
   1103           <idle>-0     (-----) [004] d..4   538.162005: sugov_set_iowait_boost: skipping iow boost
   1104           <idle>-0     (-----) [004] dn.4   538.162033: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
   1105           <idle>-0     (-----) [004] dnh5   538.162063: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   1106           <idle>-0     (-----) [004] dns5   538.162155: sched_wakeup: comm=kworker/4:2 pid=463 prio=120 target_cpu=004
   1107           <idle>-0     (-----) [004] .n.2   538.162173: cpu_idle: state=4294967295 cpu_id=4
   1108           <idle>-0     (-----) [004] d..3   538.162204: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1109 sugov:4-5860  ( 5860) [004] ...1   538.162240: clock_set_rate: perfcl_clk state=300000000 cpu_id=4
   1110 sugov:4-5860  ( 5860) [004] ...1   538.162251: cpu_frequency: state=300000 cpu_id=4
   1111 sugov:4-5860  ( 5860) [004] ...1   538.162270: cpu_frequency: state=300000 cpu_id=5
   1112 sugov:4-5860  ( 5860) [004] ...1   538.162279: cpu_frequency: state=300000 cpu_id=6
   1113 sugov:4-5860  ( 5860) [004] ...1   538.162286: cpu_frequency: state=300000 cpu_id=7
   1114 sugov:4-5860  ( 5860) [004] d..3   538.162304: sugov_set_iowait_boost: skipping iow boost
   1115 sugov:4-5860  ( 5860) [004] d..3   538.162330: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=kworker/4:2 next_pid=463 next_prio=120
   1116 kworker/4:2-463 ( 463) [004] d..3   538.162423: sched_switch: prev_comm=kworker/4:2 prev_pid=463 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
   1117 ksoftirqd/4-41 ( 41) [004] d..3   538.162463: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1118           <idle>-0     (-----) [004] d..2   538.162495: cpu_idle: state=0 cpu_id=4
   1119           <idle>-0     (-----) [004] dnh4   538.162779: sched_wakeup: comm=perfd pid=813 prio=120 target_cpu=004
   1120           <idle>-0     (-----) [004] .n.2   538.162831: cpu_idle: state=4294967295 cpu_id=4
   1121           <idle>-0     (-----) [004] d..3   538.162848: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=perfd next_pid=813 next_prio=120
   1122 perfd-813 ( 813) [004] d..3   538.162928: sched_switch: prev_comm=perfd prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1123           <idle>-0     (-----) [000] d.h3   538.162948: sugov_set_iowait_boost: doing iow boost
   1124           <idle>-0     (-----) [004] d..2   538.162951: cpu_idle: state=2 cpu_id=4
   1125           <idle>-0     (-----) [000] dnh3   538.162980: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1126           <idle>-0     (-----) [000] dnh5   538.163018: sched_wakeup: comm=sugov:0 pid=5859 prio=49 target_cpu=000
   1127           <idle>-0     (-----) [000] .n.2   538.163031: cpu_idle: state=4294967295 cpu_id=0
   1128           <idle>-0     (-----) [000] d..3   538.163065: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=5859 next_prio=49
   1129 sugov:0-5859  ( 5859) [000] ...1   538.163100: clock_set_rate: pwrcl_clk state=300000000 cpu_id=0
   1130 sugov:0-5859  ( 5859) [000] ...1   538.163110: cpu_frequency: state=300000 cpu_id=0
   1131 sugov:0-5859  ( 5859) [000] ...1   538.163131: cpu_frequency: state=300000 cpu_id=1
   1132 sugov:0-5859  ( 5859) [000] ...1   538.163144: cpu_frequency: state=300000 cpu_id=2
   1133 sugov:0-5859  ( 5859) [000] ...1   538.163159: cpu_frequency: state=300000 cpu_id=3
   1134 sugov:0-5859  ( 5859) [000] d..3   538.163181: sugov_set_iowait_boost: doing iow boost
   1135 sugov:0-5859  ( 5859) [000] d..3   538.163216: sched_switch: prev_comm=sugov:0 prev_pid=5859 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1136 kworker/u16:12-1014 ( 1014) [000] d.h4   538.163355: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1137 kworker/u16:12-1014 ( 1014) [000] d..5   538.163751: sched_wakeup: comm=kworker/0:4 pid=6999 prio=120 target_cpu=000
   1138 kworker/u16:12-1014 ( 1014) [000] d..3   538.163787: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/0:4 next_pid=6999 next_prio=120
   1139 kworker/0:4-6999 ( 6999) [000] d..3   538.163832: sched_switch: prev_comm=kworker/0:4 prev_pid=6999 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1140 kworker/u16:11-682   (  682) [000] d..3   538.163890: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1141           <idle>-0     (-----) [000] d..2   538.163941: cpu_idle: state=2 cpu_id=0
   1142           <idle>-0     (-----) [005] d..4   538.203201: sugov_set_iowait_boost: skipping iow boost
   1143           <idle>-0     (-----) [005] dn.4   538.203228: sched_wakeup: comm=ksoftirqd/5 pid=49 prio=120 target_cpu=005
   1144           <idle>-0     (-----) [005] .n.2   538.203242: cpu_idle: state=4294967295 cpu_id=5
   1145           <idle>-0     (-----) [005] d..3   538.203286: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=49 next_prio=120
   1146 ksoftirqd/5-49 ( 49) [005] d..3   538.203355: sched_switch: prev_comm=ksoftirqd/5 prev_pid=49 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   1147           <idle>-0     (-----) [005] d..2   538.203387: cpu_idle: state=0 cpu_id=5
   1148           <idle>-0     (-----) [005] d.h4   538.203904: sched_wakeup: comm=ChromiumNet pid=7502 prio=130 target_cpu=004
   1149           <idle>-0     (-----) [005] ...2   538.203964: cpu_idle: state=4294967295 cpu_id=5
   1150           <idle>-0     (-----) [005] d..2   538.203974: cpu_idle: state=2 cpu_id=5
   1151           <idle>-0     (-----) [004] .n.2   538.204094: cpu_idle: state=4294967295 cpu_id=4
   1152           <idle>-0     (-----) [004] d..3   538.204137: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ChromiumNet next_pid=7502 next_prio=130
   1153 ChromiumNet-7502 ( 7459) [004] d..3   538.204312: sugov_set_iowait_boost: skipping iow boost
   1154 ChromiumNet-7502 ( 7459) [004] d..3   538.204353: sched_switch: prev_comm=ChromiumNet prev_pid=7502 prev_prio=130 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1155           <idle>-0     (-----) [004] dnh6   538.204386: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   1156           <idle>-0     (-----) [004] d..3   538.204402: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1157 sugov:4-5860  ( 5860) [004] ...1   538.204438: clock_set_rate: perfcl_clk state=345600000 cpu_id=4
   1158 sugov:4-5860  ( 5860) [004] ...1   538.204450: cpu_frequency: state=345600 cpu_id=4
   1159 sugov:4-5860  ( 5860) [004] ...1   538.204470: cpu_frequency: state=345600 cpu_id=5
   1160 sugov:4-5860  ( 5860) [004] ...1   538.204479: cpu_frequency: state=345600 cpu_id=6
   1161 sugov:4-5860  ( 5860) [004] ...1   538.204487: cpu_frequency: state=345600 cpu_id=7
   1162 sugov:4-5860  ( 5860) [004] d..3   538.204501: sugov_set_iowait_boost: skipping iow boost
   1163 sugov:4-5860  ( 5860) [004] d..3   538.204529: sugov_set_iowait_boost: skipping iow boost
   1164 sugov:4-5860  ( 5860) [004] d..3   538.204534: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1165           <idle>-0     (-----) [004] d..2   538.204561: cpu_idle: state=2 cpu_id=4
   1166           <idle>-0     (-----) [000] d.h5   538.254199: sugov_set_iowait_boost: doing iow boost
   1167           <idle>-0     (-----) [000] dnh5   538.254227: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1168           <idle>-0     (-----) [000] dns4   538.254297: sched_blocked_reason: pid=4 iowait=0 caller=msleep+0x18/0x24
   1169           <idle>-0     (-----) [000] dns4   538.254311: sched_wakeup: comm=kworker/0:0 pid=4 prio=120 target_cpu=000
   1170           <idle>-0     (-----) [000] dns4   538.254328: sched_blocked_reason: pid=1633 iowait=0 caller=msleep+0x18/0x24
   1171           <idle>-0     (-----) [000] dns4   538.254340: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1172           <idle>-0     (-----) [000] .n.2   538.254386: cpu_idle: state=4294967295 cpu_id=0
   1173           <idle>-0     (-----) [000] d..3   538.254431: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=4 next_prio=120
   1174 kworker/0:0-4     (    4) [000] d..3   538.254483: sched_switch: prev_comm=kworker/0:0 prev_pid=4 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1175 kworker/0:5-1633 ( 1633) [000] d..3   538.254523: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1176 kworker/u16:11-682   (  682) [000] d..5   538.254559: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1177 kworker/u16:11-682   (  682) [000] d..3   538.254584: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1178 kworker/0:5-1633 ( 1633) [000] d..3   538.254613: sugov_set_iowait_boost: doing iow boost
   1179 kworker/0:5-1633 ( 1633) [000] d..3   538.254655: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1180           <idle>-0     (-----) [000] d..2   538.254707: cpu_idle: state=2 cpu_id=0
   1181           <idle>-0     (-----) [000] d.s6   538.259680: sugov_set_iowait_boost: doing iow boost
   1182           <idle>-0     (-----) [000] dns6   538.259707: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1183           <idle>-0     (-----) [000] .n.2   538.259732: cpu_idle: state=4294967295 cpu_id=0
   1184           <idle>-0     (-----) [000] d..3   538.259784: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1185 kworker/u16:11-682   (  682) [000] d..4   538.259870: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1186 kworker/u16:11-682   (  682) [000] d.s4   538.259991: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1187 kworker/u16:11-682   (  682) [000] d..3   538.260220: sugov_set_iowait_boost: doing iow boost
   1188 kworker/u16:11-682   (  682) [000] d..3   538.260244: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1189 kworker/0:5-1633 ( 1633) [000] d..3   538.260350: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1190 kworker/u16:12-1014 ( 1014) [000] d..3   538.260407: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1191           <idle>-0     (-----) [000] d..2   538.260456: cpu_idle: state=2 cpu_id=0
   1192           <idle>-0     (-----) [006] d.h3   538.261097: sugov_set_iowait_boost: skipping iow boost
   1193           <idle>-0     (-----) [006] dnh3   538.261127: sched_wakeup: comm=sensors (a] 1.0-ser pid=1593 prio=120 target_cpu=006
   1194           <idle>-0     (-----) [006] dnh5   538.261167: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=006
   1195           <idle>-0     (-----) [006] .n.2   538.261180: cpu_idle: state=4294967295 cpu_id=6
   1196           <idle>-0     (-----) [006] d..3   538.261213: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1197 sugov:4-5860  ( 5860) [006] ...1   538.261247: clock_set_rate: perfcl_clk state=300000000 cpu_id=6
   1198 sugov:4-5860  ( 5860) [006] ...1   538.261258: cpu_frequency: state=300000 cpu_id=4
   1199 sugov:4-5860  ( 5860) [006] ...1   538.261277: cpu_frequency: state=300000 cpu_id=5
   1200 sugov:4-5860  ( 5860) [006] ...1   538.261285: cpu_frequency: state=300000 cpu_id=6
   1201 sugov:4-5860  ( 5860) [006] ...1   538.261293: cpu_frequency: state=300000 cpu_id=7
   1202 sugov:4-5860  ( 5860) [006] d..3   538.261311: sugov_set_iowait_boost: skipping iow boost
   1203 sugov:4-5860  ( 5860) [006] d..3   538.261334: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=sensors (a] 1.0-ser next_pid=1593 next_prio=120
   1204 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.261549: sched_wakeup: comm=android.hardwar pid=951 prio=120 target_cpu=005
   1205 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.261583: sugov_set_iowait_boost: skipping iow boost
   1206 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.261621: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=1593 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1207           <idle>-0     (-----) [006] d..2   538.261659: cpu_idle: state=2 cpu_id=6
   1208           <idle>-0     (-----) [005] .n.2   538.261740: cpu_idle: state=4294967295 cpu_id=5
   1209           <idle>-0     (-----) [005] d..3   538.261779: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.hardwar next_pid=951 next_prio=120
   1210 android.hardwar-951 ( 706) [005] d..3   538.261904: sched_wakeup: comm=android.hardwar pid=1066 prio=120 target_cpu=007
   1211 android.hardwar-951 ( 706) [005] d..3   538.261955: sched_switch: prev_comm=android.hardwar prev_pid=951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   1212           <idle>-0     (-----) [005] d..2   538.261987: cpu_idle: state=2 cpu_id=5
   1213           <idle>-0     (-----) [007] .n.2   538.262089: cpu_idle: state=4294967295 cpu_id=7
   1214           <idle>-0     (-----) [007] d..3   538.262129: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1215 android.hardwar-1066 ( 706) [007] dn.3   538.262230: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1216 android.hardwar-1066 ( 706) [007] d..3   538.262245: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1217 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.262267: sugov_set_iowait_boost: skipping iow boost
   1218 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.262285: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1219 android.hardwar-1066 ( 706) [007] dn.3   538.262304: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1220 android.hardwar-1066 ( 706) [007] d..3   538.262312: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1221 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.262444: sugov_set_iowait_boost: skipping iow boost
   1222 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.262465: sugov_set_iowait_boost: skipping iow boost
   1223 sensors (a] 1.0-ser-706   (  706) [007] dnh6   538.262492: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=007
   1224 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.262506: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1225 sugov:4-5860  ( 5860) [007] ...1   538.262533: clock_set_rate: perfcl_clk state=422400000 cpu_id=7
   1226 sugov:4-5860  ( 5860) [007] ...1   538.262542: cpu_frequency: state=422400 cpu_id=4
   1227 sugov:4-5860  ( 5860) [007] ...1   538.262558: cpu_frequency: state=422400 cpu_id=5
   1228 sugov:4-5860  ( 5860) [007] ...1   538.262569: cpu_frequency: state=422400 cpu_id=6
   1229 sugov:4-5860  ( 5860) [007] ...1   538.262577: cpu_frequency: state=422400 cpu_id=7
   1230 sugov:4-5860  ( 5860) [007] d..3   538.262589: sugov_set_iowait_boost: skipping iow boost
   1231 sugov:4-5860  ( 5860) [007] d..3   538.262600: sugov_set_iowait_boost: skipping iow boost
   1232 sugov:4-5860  ( 5860) [007] d..3   538.262607: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1233 android.hardwar-1066 ( 706) [007] dnh6   538.262617: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=007
   1234 android.hardwar-1066 ( 706) [007] d..3   538.262625: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1235 sugov:4-5860  ( 5860) [007] ...1   538.262637: cpu_frequency: state=422400 cpu_id=4
   1236 sugov:4-5860  ( 5860) [007] ...1   538.262643: cpu_frequency: state=422400 cpu_id=5
   1237 sugov:4-5860  ( 5860) [007] ...1   538.262649: cpu_frequency: state=422400 cpu_id=6
   1238 sugov:4-5860  ( 5860) [007] ...1   538.262655: cpu_frequency: state=422400 cpu_id=7
   1239 sugov:4-5860  ( 5860) [007] d..3   538.262662: sugov_set_iowait_boost: skipping iow boost
   1240 sugov:4-5860  ( 5860) [007] d..3   538.262669: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1241 android.hardwar-1066 ( 706) [007] d..3   538.262692: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=S ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=120
   1242 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.262777: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1243           <idle>-0     (-----) [007] d..2   538.262804: cpu_idle: state=2 cpu_id=7
   1244           <idle>-0     (-----) [004] d.h4   538.263218: sugov_set_iowait_boost: skipping iow boost
   1245           <idle>-0     (-----) [004] dnh4   538.263229: sched_wakeup: comm=perfd pid=813 prio=120 target_cpu=004
   1246           <idle>-0     (-----) [004] .n.2   538.263250: cpu_idle: state=4294967295 cpu_id=4
   1247           <idle>-0     (-----) [004] d..3   538.263279: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=perfd next_pid=813 next_prio=120
   1248           <idle>-0     (-----) [001] dnh3   538.263300: sched_wakeup: comm=SensorService pid=1307 prio=89 target_cpu=001
   1249           <idle>-0     (-----) [001] .n.2   538.263328: cpu_idle: state=4294967295 cpu_id=1
   1250 perfd-813 ( 813) [004] d..3   538.263346: sched_switch: prev_comm=perfd prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1251           <idle>-0     (-----) [004] dn.4   538.263363: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
   1252           <idle>-0     (-----) [004] d..3   538.263370: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
   1253           <idle>-0     (-----) [001] d..3   538.263371: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SensorService next_pid=1307 next_prio=89
   1254 ksoftirqd/4-41 ( 41) [004] d..3   538.263433: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1255           <idle>-0     (-----) [004] d..2   538.263452: cpu_idle: state=2 cpu_id=4
   1256           <idle>-0     (-----) [000] d.h3   538.263624: sugov_set_iowait_boost: doing iow boost
   1257           <idle>-0     (-----) [000] dnh3   538.263653: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1258           <idle>-0     (-----) [000] .n.2   538.263669: cpu_idle: state=4294967295 cpu_id=0
   1259           <idle>-0     (-----) [000] d..3   538.263708: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1260           <idle>-0     (-----) [004] d.h3   538.263827: sugov_set_iowait_boost: skipping iow boost
   1261           <idle>-0     (-----) [004] dnh3   538.263839: sched_wakeup: comm=android.youtube pid=7459 prio=110 target_cpu=004
   1262 SensorService-1307 ( 1118) [001] d..3   538.263846: sugov_set_iowait_boost: doing iow boost
   1263           <idle>-0     (-----) [004] .n.2   538.263849: cpu_idle: state=4294967295 cpu_id=4
   1264           <idle>-0     (-----) [004] d..3   538.263867: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.youtube next_pid=7459 next_prio=110
   1265 SensorService-1307 ( 1118) [001] d..3   538.263874: sugov_set_iowait_boost: doing iow boost
   1266 SensorService-1307 ( 1118) [001] d..3   538.263911: sugov_set_iowait_boost: doing iow boost
   1267 SensorService-1307 ( 1118) [001] d..3   538.263924: sched_switch: prev_comm=SensorService prev_pid=1307 prev_prio=89 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1268           <idle>-0     (-----) [007] dnh3   538.263969: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1269           <idle>-0     (-----) [001] d..2   538.263974: cpu_idle: state=2 cpu_id=1
   1270           <idle>-0     (-----) [007] .n.2   538.263981: cpu_idle: state=4294967295 cpu_id=7
   1271           <idle>-0     (-----) [007] d..3   538.263999: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1272 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.264055: sugov_set_iowait_boost: skipping iow boost
   1273 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.264068: sugov_set_iowait_boost: skipping iow boost
   1274 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.264085: sugov_set_iowait_boost: skipping iow boost
   1275 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.264090: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1276 android.youtube-7459 ( 7459) [004] d..3   538.264091: sugov_set_iowait_boost: skipping iow boost
   1277 kworker/u16:12-1014 ( 1014) [000] d..3   538.264095: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1278           <idle>-0     (-----) [007] d..2   538.264111: cpu_idle: state=2 cpu_id=7
   1279 android.youtube-7459 ( 7459) [004] d..3   538.264119: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1280           <idle>-0     (-----) [000] d..2   538.264138: cpu_idle: state=2 cpu_id=0
   1281           <idle>-0     (-----) [004] d..2   538.264142: cpu_idle: state=2 cpu_id=4
   1282           <idle>-0     (-----) [006] d..4   538.267571: sugov_set_iowait_boost: skipping iow boost
   1283           <idle>-0     (-----) [006] dn.4   538.267583: sched_wakeup: comm=ksoftirqd/6 pid=57 prio=120 target_cpu=006
   1284           <idle>-0     (-----) [006] .n.2   538.267591: cpu_idle: state=4294967295 cpu_id=6
   1285           <idle>-0     (-----) [006] d..3   538.267611: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/6 next_pid=57 next_prio=120
   1286 ksoftirqd/6-57 ( 57) [006] d..3   538.267646: sched_switch: prev_comm=ksoftirqd/6 prev_pid=57 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1287           <idle>-0     (-----) [006] d..2   538.267665: cpu_idle: state=2 cpu_id=6
   1288           <idle>-0     (-----) [000] d.h3   538.268460: sugov_set_iowait_boost: doing iow boost
   1289           <idle>-0     (-----) [000] d.h3   538.268480: sugov_set_iowait_boost: doing iow boost
   1290           <idle>-0     (-----) [000] dnh3   538.268500: sched_wakeup: comm=Thread-50 pid=7599 prio=120 target_cpu=000
   1291           <idle>-0     (-----) [000] .n.2   538.268524: cpu_idle: state=4294967295 cpu_id=0
   1292           <idle>-0     (-----) [000] d..3   538.268575: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Thread-50 next_pid=7599 next_prio=120
   1293 <7599>-7599  (-----) [000] d..3   538.268810: sugov_set_iowait_boost: doing iow boost
   1294 <7599>-7599  (-----) [000] d..3   538.268874: sched_switch: prev_comm=Thread-50 prev_pid=7599 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1295           <idle>-0     (-----) [000] d..2   538.268926: cpu_idle: state=2 cpu_id=0
   1296           <idle>-0     (-----) [006] d..4   538.294034: sugov_set_iowait_boost: skipping iow boost
   1297           <idle>-0     (-----) [006] dn.4   538.294055: sched_wakeup: comm=ksoftirqd/6 pid=57 prio=120 target_cpu=006
   1298           <idle>-0     (-----) [006] .n.2   538.294183: cpu_idle: state=4294967295 cpu_id=6
   1299           <idle>-0     (-----) [006] d..3   538.294213: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/6 next_pid=57 next_prio=120
   1300 ksoftirqd/6-57 ( 57) [006] d..3   538.294233: sugov_set_iowait_boost: skipping iow boost
   1301 ksoftirqd/6-57 ( 57) [006] d..3   538.294250: sched_switch: prev_comm=ksoftirqd/6 prev_pid=57 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1302           <idle>-0     (-----) [006] d..2   538.294280: cpu_idle: state=2 cpu_id=6
   1303           <idle>-0     (-----) [000] d.h3   538.295054: sugov_set_iowait_boost: doing iow boost
   1304           <idle>-0     (-----) [000] dnh3   538.295089: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1305           <idle>-0     (-----) [000] .n.2   538.295112: cpu_idle: state=4294967295 cpu_id=0
   1306           <idle>-0     (-----) [000] d..3   538.295164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1307 kworker/u16:12-1014 ( 1014) [000] d..5   538.295215: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1308 kworker/u16:12-1014 ( 1014) [000] d..3   538.295249: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1309 kworker/0:5-1633 ( 1633) [000] d..3   538.295331: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1310           <idle>-0     (-----) [000] d..2   538.295381: cpu_idle: state=2 cpu_id=0
   1311           <idle>-0     (-----) [000] d..4   538.344691: sugov_set_iowait_boost: doing iow boost
   1312           <idle>-0     (-----) [000] dn.4   538.344723: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
   1313           <idle>-0     (-----) [000] .n.2   538.344740: cpu_idle: state=4294967295 cpu_id=0
   1314           <idle>-0     (-----) [000] d..3   538.344792: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
   1315 ksoftirqd/0-3 ( 3) [000] d.s4   538.344838: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1316 ksoftirqd/0-3 ( 3) [000] d..3   538.344876: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1317 kworker/0:5-1633 ( 1633) [000] d..3   538.344977: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1318           <idle>-0     (-----) [000] d..2   538.345020: cpu_idle: state=0 cpu_id=0
   1319           <idle>-0     (-----) [000] dnh4   538.345104: sched_wakeup: comm=Thread-2 pid=4433 prio=120 target_cpu=000
   1320           <idle>-0     (-----) [000] .n.2   538.345166: cpu_idle: state=4294967295 cpu_id=0
   1321           <idle>-0     (-----) [000] d..3   538.345199: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Thread-2 next_pid=4433 next_prio=120
   1322 Thread-2-4433 ( 1806) [000] d..4   538.345611: sugov_set_iowait_boost: doing iow boost
   1323 Thread-2-4433 ( 1806) [000] d..4   538.345621: sugov_set_iowait_boost: doing iow boost
   1324 Thread-2-4433 ( 1806) [000] d..4   538.345633: sched_wakeup: comm=logd.writer pid=571 prio=130 target_cpu=000
   1325 Thread-2-4433 ( 1806) [000] d..6   538.345861: sched_wakeup: comm=hwservicemanage pid=564 prio=120 target_cpu=000
   1326 Thread-2-4433 ( 1806) [000] d..3   538.345935: sched_switch: prev_comm=Thread-2 prev_pid=4433 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=571 next_prio=130
   1327 logd.writer-571 ( 566) [000] d..3   538.346169: sched_switch: prev_comm=logd.writer prev_pid=571 prev_prio=130 prev_state=S ==> next_comm=hwservicemanage next_pid=564 next_prio=120
   1328 hwservicemanage-564   (  564) [000] d.h3   538.346616: sugov_set_iowait_boost: doing iow boost
   1329 hwservicemanage-564   (  564) [000] d.h5   538.346688: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1330 hwservicemanage-564   (  564) [000] d..4   538.347586: sugov_set_iowait_boost: doing iow boost
   1331 hwservicemanage-564   (  564) [000] d..4   538.347602: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   1332 hwservicemanage-564   (  564) [000] d..4   538.348377: sched_wakeup: comm=logd.writer pid=571 prio=130 target_cpu=000
   1333 hwservicemanage-564   (  564) [000] d..4   538.348510: sched_wakeup: comm=Thread-2 pid=4433 prio=120 target_cpu=000
   1334 hwservicemanage-564   (  564) [000] d..3   538.348617: sugov_set_iowait_boost: doing iow boost
   1335 hwservicemanage-564   (  564) [000] d..3   538.348641: sched_switch: prev_comm=hwservicemanage prev_pid=564 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   1336 rcuop/0-10    (   10) [000] d..4   538.348684: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1337 rcuop/0-10    (   10) [000] d..3   538.348707: 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
   1338 rcu_preempt-7     (    7) [000] d..3   538.348741: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Thread-2 next_pid=4433 next_prio=120
   1339 Thread-2-4433 ( 1806) [000] d..6   538.348899: sched_wakeup: comm=hwservicemanage pid=564 prio=120 target_cpu=000
   1340 Thread-2-4433 ( 1806) [000] d..3   538.348958: sched_switch: prev_comm=Thread-2 prev_pid=4433 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1341 kworker/u16:12-1014 ( 1014) [000] d..5   538.348997: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1342 kworker/u16:12-1014 ( 1014) [000] d..3   538.349022: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1343 kworker/0:5-1633 ( 1633) [000] d..3   538.349058: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=571 next_prio=130
   1344 logd.writer-571 ( 566) [000] d..3   538.349218: sched_switch: prev_comm=logd.writer prev_pid=571 prev_prio=130 prev_state=S ==> next_comm=hwservicemanage next_pid=564 next_prio=120
   1345 hwservicemanage-564   (  564) [000] d.h2   538.349941: sugov_set_iowait_boost: doing iow boost
   1346 hwservicemanage-564   (  564) [000] dn.4   538.350111: sched_wakeup: comm=Thread-2 pid=4433 prio=120 target_cpu=000
   1347 hwservicemanage-564   (  564) [000] d..3   538.350133: sched_switch: prev_comm=hwservicemanage prev_pid=564 prev_prio=120 prev_state=R+ ==> next_comm=Thread-2 next_pid=4433 next_prio=120
   1348 Thread-2-4433 ( 1806) [000] d..4   538.350925: sugov_set_iowait_boost: doing iow boost
   1349 Thread-2-4433 ( 1806) [000] d..4   538.350943: sched_wakeup: comm=logd.writer pid=571 prio=130 target_cpu=000
   1350 Thread-2-4433 ( 1806) [000] d..3   538.351103: sched_switch: prev_comm=Thread-2 prev_pid=4433 prev_prio=120 prev_state=S ==> next_comm=hwservicemanage next_pid=564 next_prio=120
   1351 hwservicemanage-564   (  564) [000] d..3   538.351222: sched_switch: prev_comm=hwservicemanage prev_pid=564 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=571 next_prio=130
   1352 logd.writer-571 ( 566) [000] d..3   538.351415: sched_switch: prev_comm=logd.writer prev_pid=571 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1353           <idle>-0     (-----) [000] d..2   538.351469: cpu_idle: state=2 cpu_id=0
   1354           <idle>-0     (-----) [000] d.s4   538.353547: sugov_set_iowait_boost: doing iow boost
   1355           <idle>-0     (-----) [000] dns4   538.353562: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1356           <idle>-0     (-----) [000] .n.2   538.353599: cpu_idle: state=4294967295 cpu_id=0
   1357           <idle>-0     (-----) [000] d..3   538.353619: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   1358 rcu_preempt-7     (    7) [000] d..5   538.353664: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   1359 rcu_preempt-7     (    7) [000] d..3   538.353689: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   1360 rcuop/0-10    (   10) [000] d..4   538.353724: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1361 rcuop/0-10    (   10) [000] d..3   538.353745: 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
   1362 rcu_preempt-7     (    7) [000] d..3   538.353791: 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
   1363           <idle>-0     (-----) [000] d..2   538.353829: cpu_idle: state=2 cpu_id=0
   1364           <idle>-0     (-----) [004] d.h4   538.360752: sugov_set_iowait_boost: skipping iow boost
   1365           <idle>-0     (-----) [004] dnh4   538.360774: sched_wakeup: comm=ChromiumNet pid=7539 prio=120 target_cpu=004
   1366           <idle>-0     (-----) [004] dnh5   538.360812: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   1367           <idle>-0     (-----) [004] .n.2   538.360823: cpu_idle: state=4294967295 cpu_id=4
   1368           <idle>-0     (-----) [004] d..3   538.360851: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1369 sugov:4-5860  ( 5860) [004] ...1   538.360880: clock_set_rate: perfcl_clk state=300000000 cpu_id=4
   1370 sugov:4-5860  ( 5860) [004] ...1   538.360890: cpu_frequency: state=300000 cpu_id=4
   1371 sugov:4-5860  ( 5860) [004] ...1   538.360906: cpu_frequency: state=300000 cpu_id=5
   1372 sugov:4-5860  ( 5860) [004] ...1   538.360914: cpu_frequency: state=300000 cpu_id=6
   1373 sugov:4-5860  ( 5860) [004] ...1   538.360922: cpu_frequency: state=300000 cpu_id=7
   1374 sugov:4-5860  ( 5860) [004] d..3   538.360940: sugov_set_iowait_boost: skipping iow boost
   1375 sugov:4-5860  ( 5860) [004] d..3   538.360966: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=ChromiumNet next_pid=7539 next_prio=120
   1376 ChromiumNet-7539 ( 7459) [004] dnh6   538.360987: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   1377 ChromiumNet-7539 ( 7459) [004] d..3   538.361006: sched_switch: prev_comm=ChromiumNet prev_pid=7539 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1378 sugov:4-5860  ( 5860) [004] ...1   538.361024: clock_set_rate: perfcl_clk state=345600000 cpu_id=4
   1379 sugov:4-5860  ( 5860) [004] ...1   538.361032: cpu_frequency: state=345600 cpu_id=4
   1380 sugov:4-5860  ( 5860) [004] ...1   538.361045: cpu_frequency: state=345600 cpu_id=5
   1381 sugov:4-5860  ( 5860) [004] ...1   538.361053: cpu_frequency: state=345600 cpu_id=6
   1382 sugov:4-5860  ( 5860) [004] ...1   538.361062: cpu_frequency: state=345600 cpu_id=7
   1383 sugov:4-5860  ( 5860) [004] d..3   538.361073: sugov_set_iowait_boost: skipping iow boost
   1384 sugov:4-5860  ( 5860) [004] d..3   538.361084: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=ChromiumNet next_pid=7539 next_prio=120
   1385 ChromiumNet-7539 ( 7459) [004] d..3   538.361338: sched_switch: prev_comm=ChromiumNet prev_pid=7539 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1386           <idle>-0     (-----) [004] dn.4   538.361362: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
   1387           <idle>-0     (-----) [004] d..3   538.361373: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
   1388 ksoftirqd/4-41 ( 41) [004] d.s4   538.361401: sched_wakeup: comm=kworker/4:2 pid=463 prio=120 target_cpu=004
   1389 ksoftirqd/4-41 ( 41) [004] d..3   538.361421: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=kworker/4:2 next_pid=463 next_prio=120
   1390 kworker/4:2-463 ( 463) [004] d..3   538.361506: sched_switch: prev_comm=kworker/4:2 prev_pid=463 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1391           <idle>-0     (-----) [004] d..2   538.361536: cpu_idle: state=2 cpu_id=4
   1392           <idle>-0     (-----) [000] d.s4   538.361600: sugov_set_iowait_boost: doing iow boost
   1393           <idle>-0     (-----) [000] dns4   538.361629: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1394           <idle>-0     (-----) [000] .n.2   538.361657: cpu_idle: state=4294967295 cpu_id=0
   1395           <idle>-0     (-----) [000] d..3   538.361705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   1396 rcu_preempt-7     (    7) [000] d..5   538.361762: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   1397 rcu_preempt-7     (    7) [000] d..3   538.361794: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   1398 rcuop/0-10    (   10) [000] d..3   538.361862: 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
   1399           <idle>-0     (-----) [000] d..2   538.361914: cpu_idle: state=2 cpu_id=0
   1400           <idle>-0     (-----) [004] d.h4   538.363662: sugov_set_iowait_boost: skipping iow boost
   1401           <idle>-0     (-----) [004] dnh4   538.363676: sched_wakeup: comm=perfd pid=813 prio=120 target_cpu=004
   1402           <idle>-0     (-----) [004] .n.2   538.363692: cpu_idle: state=4294967295 cpu_id=4
   1403           <idle>-0     (-----) [004] d..3   538.363717: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=perfd next_pid=813 next_prio=120
   1404 perfd-813 ( 813) [004] d..3   538.363790: sched_switch: prev_comm=perfd prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1405           <idle>-0     (-----) [004] dn.4   538.363809: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
   1406           <idle>-0     (-----) [004] d..3   538.363818: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
   1407 ksoftirqd/4-41 ( 41) [004] d..3   538.363898: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1408           <idle>-0     (-----) [004] d..2   538.363921: cpu_idle: state=2 cpu_id=4
   1409           <idle>-0     (-----) [000] d.h3   538.364783: sugov_set_iowait_boost: doing iow boost
   1410           <idle>-0     (-----) [000] dnh3   538.364817: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1411           <idle>-0     (-----) [000] .n.2   538.364841: cpu_idle: state=4294967295 cpu_id=0
   1412           <idle>-0     (-----) [000] d..3   538.364895: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1413 kworker/u16:12-1014 ( 1014) [000] d..3   538.365315: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1414           <idle>-0     (-----) [000] d..2   538.365373: cpu_idle: state=2 cpu_id=0
   1415           <idle>-0     (-----) [000] d.s6   538.438024: sugov_set_iowait_boost: doing iow boost
   1416           <idle>-0     (-----) [000] dns6   538.438054: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1417           <idle>-0     (-----) [000] .n.2   538.438080: cpu_idle: state=4294967295 cpu_id=0
   1418           <idle>-0     (-----) [000] d..3   538.438134: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1419 kworker/u16:12-1014 ( 1014) [000] d..4   538.438219: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1420 kworker/u16:12-1014 ( 1014) [000] d..3   538.438459: sugov_set_iowait_boost: doing iow boost
   1421 kworker/u16:12-1014 ( 1014) [000] d..3   538.438484: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1422 kworker/u16:11-682   (  682) [000] d..3   538.438543: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1423           <idle>-0     (-----) [000] dn.4   538.438582: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
   1424           <idle>-0     (-----) [000] d..3   538.438600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
   1425 ksoftirqd/0-3 ( 3) [000] d..3   538.438656: 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
   1426           <idle>-0     (-----) [000] d..2   538.438702: cpu_idle: state=2 cpu_id=0
   1427           <idle>-0     (-----) [006] d.h3   538.439335: sugov_set_iowait_boost: skipping iow boost
   1428           <idle>-0     (-----) [006] dnh3   538.439365: sched_wakeup: comm=sensors (a] 1.0-ser pid=1593 prio=120 target_cpu=006
   1429           <idle>-0     (-----) [006] dnh5   538.439404: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=006
   1430           <idle>-0     (-----) [006] .n.2   538.439417: cpu_idle: state=4294967295 cpu_id=6
   1431           <idle>-0     (-----) [006] d..3   538.439449: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1432 sugov:4-5860  ( 5860) [006] ...1   538.439483: clock_set_rate: perfcl_clk state=300000000 cpu_id=6
   1433 sugov:4-5860  ( 5860) [006] ...1   538.439494: cpu_frequency: state=300000 cpu_id=4
   1434 sugov:4-5860  ( 5860) [006] ...1   538.439513: cpu_frequency: state=300000 cpu_id=5
   1435 sugov:4-5860  ( 5860) [006] ...1   538.439521: cpu_frequency: state=300000 cpu_id=6
   1436 sugov:4-5860  ( 5860) [006] ...1   538.439529: cpu_frequency: state=300000 cpu_id=7
   1437 sugov:4-5860  ( 5860) [006] d..3   538.439546: sugov_set_iowait_boost: skipping iow boost
   1438 sugov:4-5860  ( 5860) [006] d..3   538.439570: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=sensors (a] 1.0-ser next_pid=1593 next_prio=120
   1439 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.439905: sched_wakeup: comm=android.hardwar pid=951 prio=120 target_cpu=005
   1440 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.440062: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=1593 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1441           <idle>-0     (-----) [005] .n.2   538.440098: cpu_idle: state=4294967295 cpu_id=5
   1442           <idle>-0     (-----) [006] d..2   538.440100: cpu_idle: state=2 cpu_id=6
   1443           <idle>-0     (-----) [005] d..3   538.440136: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.hardwar next_pid=951 next_prio=120
   1444 android.hardwar-951 ( 706) [005] d..3   538.440294: sched_wakeup: comm=android.hardwar pid=1066 prio=120 target_cpu=007
   1445 android.hardwar-951 ( 706) [005] d..3   538.440350: sched_switch: prev_comm=android.hardwar prev_pid=951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   1446           <idle>-0     (-----) [005] d..2   538.440389: cpu_idle: state=2 cpu_id=5
   1447           <idle>-0     (-----) [007] .n.2   538.440498: cpu_idle: state=4294967295 cpu_id=7
   1448           <idle>-0     (-----) [007] d..3   538.440537: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1449 android.hardwar-1066 ( 706) [007] dn.3   538.440592: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1450 android.hardwar-1066 ( 706) [007] d..3   538.440608: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1451 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.440630: sugov_set_iowait_boost: skipping iow boost
   1452 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.440646: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1453           <idle>-0     (-----) [000] d.h3   538.440651: sugov_set_iowait_boost: doing iow boost
   1454 android.hardwar-1066 ( 706) [007] dn.3   538.440664: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1455 android.hardwar-1066 ( 706) [007] d..3   538.440672: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1456           <idle>-0     (-----) [000] dnh3   538.440687: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1457           <idle>-0     (-----) [000] dnh3   538.440702: sched_wakeup: comm=dsps_smem_glink pid=86 prio=120 target_cpu=000
   1458           <idle>-0     (-----) [000] .n.2   538.440723: cpu_idle: state=4294967295 cpu_id=0
   1459           <idle>-0     (-----) [000] d..3   538.440776: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=dsps_smem_glink next_pid=86 next_prio=120
   1460 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.440804: sugov_set_iowait_boost: skipping iow boost
   1461 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.440825: sugov_set_iowait_boost: skipping iow boost
   1462 dsps_smem_glink-86 ( 86) [000] d..3   538.440838: sched_switch: prev_comm=dsps_smem_glink prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1463 sensors (a] 1.0-ser-706   (  706) [007] dnh6   538.440852: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=007
   1464 sensors (a] 1.0-ser-706   (  706) [007] dn.3   538.440866: sugov_set_iowait_boost: skipping iow boost
   1465 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.440871: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1466 kworker/u16:11-682   (  682) [000] d..5   538.440888: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1467 sugov:4-5860  ( 5860) [007] ...1   538.440896: clock_set_rate: perfcl_clk state=422400000 cpu_id=7
   1468 sugov:4-5860  ( 5860) [007] ...1   538.440906: cpu_frequency: state=422400 cpu_id=4
   1469 kworker/u16:11-682   (  682) [000] d..3   538.440914: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1470 sugov:4-5860  ( 5860) [007] ...1   538.440922: cpu_frequency: state=422400 cpu_id=5
   1471 sugov:4-5860  ( 5860) [007] ...1   538.440933: cpu_frequency: state=422400 cpu_id=6
   1472 sugov:4-5860  ( 5860) [007] ...1   538.440941: cpu_frequency: state=422400 cpu_id=7
   1473 sugov:4-5860  ( 5860) [007] d..3   538.440953: sugov_set_iowait_boost: skipping iow boost
   1474 sugov:4-5860  ( 5860) [007] d..3   538.440966: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1475 android.hardwar-1066 ( 706) [007] d..3   538.440988: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=S ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=120
   1476 kworker/0:5-1633 ( 1633) [000] d..3   538.440992: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1477           <idle>-0     (-----) [001] dnh3   538.441006: sched_wakeup: comm=SensorService pid=1307 prio=89 target_cpu=001
   1478           <idle>-0     (-----) [001] .n.2   538.441026: cpu_idle: state=4294967295 cpu_id=1
   1479           <idle>-0     (-----) [000] d..2   538.441039: cpu_idle: state=2 cpu_id=0
   1480           <idle>-0     (-----) [001] d..3   538.441055: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SensorService next_pid=1307 next_prio=89
   1481 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.441067: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1482           <idle>-0     (-----) [007] d..2   538.441091: cpu_idle: state=2 cpu_id=7
   1483 SensorService-1307 ( 1118) [001] d..3   538.441513: sugov_set_iowait_boost: doing iow boost
   1484 SensorService-1307 ( 1118) [001] d..3   538.441541: sugov_set_iowait_boost: doing iow boost
   1485 SensorService-1307 ( 1118) [001] d..3   538.441574: sugov_set_iowait_boost: doing iow boost
   1486 SensorService-1307 ( 1118) [001] d..3   538.441586: sched_switch: prev_comm=SensorService prev_pid=1307 prev_prio=89 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1487           <idle>-0     (-----) [001] d..2   538.441631: cpu_idle: state=2 cpu_id=1
   1488           <idle>-0     (-----) [007] dnh3   538.442773: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1489           <idle>-0     (-----) [004] d.h3   538.442780: sugov_set_iowait_boost: skipping iow boost
   1490           <idle>-0     (-----) [007] .n.2   538.442792: cpu_idle: state=4294967295 cpu_id=7
   1491           <idle>-0     (-----) [004] dnh3   538.442796: sched_wakeup: comm=android.youtube pid=7459 prio=110 target_cpu=004
   1492           <idle>-0     (-----) [004] .n.2   538.442806: cpu_idle: state=4294967295 cpu_id=4
   1493           <idle>-0     (-----) [007] d..3   538.442818: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1494           <idle>-0     (-----) [004] d..3   538.442833: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.youtube next_pid=7459 next_prio=110
   1495 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.442907: sugov_set_iowait_boost: skipping iow boost
   1496 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.442924: sugov_set_iowait_boost: skipping iow boost
   1497 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.442949: sugov_set_iowait_boost: skipping iow boost
   1498 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.442953: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1499           <idle>-0     (-----) [007] d..2   538.442981: cpu_idle: state=2 cpu_id=7
   1500 android.youtube-7459 ( 7459) [004] d..3   538.443096: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1501           <idle>-0     (-----) [004] d..2   538.443122: cpu_idle: state=2 cpu_id=4
   1502           <idle>-0     (-----) [000] d.s6   538.444404: sugov_set_iowait_boost: doing iow boost
   1503           <idle>-0     (-----) [000] dns6   538.444433: sched_wakeup: comm=smem_native_dsp pid=85 prio=120 target_cpu=000
   1504           <idle>-0     (-----) [000] .n.2   538.444458: cpu_idle: state=4294967295 cpu_id=0
   1505           <idle>-0     (-----) [000] d..3   538.444513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_dsp next_pid=85 next_prio=120
   1506 smem_native_dsp-85 ( 85) [000] d..3   538.444630: sched_switch: prev_comm=smem_native_dsp prev_pid=85 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1507           <idle>-0     (-----) [000] dn.4   538.444670: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
   1508           <idle>-0     (-----) [000] d..3   538.444687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
   1509 ksoftirqd/0-3 ( 3) [000] d..3   538.444743: 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
   1510           <idle>-0     (-----) [000] d..2   538.444788: cpu_idle: state=2 cpu_id=0
   1511           <idle>-0     (-----) [004] d.h4   538.464677: sugov_set_iowait_boost: skipping iow boost
   1512           <idle>-0     (-----) [004] dnh4   538.464701: sched_wakeup: comm=perfd pid=813 prio=120 target_cpu=004
   1513           <idle>-0     (-----) [004] dnh5   538.464747: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   1514           <idle>-0     (-----) [004] .n.2   538.464758: cpu_idle: state=4294967295 cpu_id=4
   1515           <idle>-0     (-----) [004] d..3   538.464787: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1516 sugov:4-5860  ( 5860) [004] ...1   538.464815: clock_set_rate: perfcl_clk state=300000000 cpu_id=4
   1517 sugov:4-5860  ( 5860) [004] ...1   538.464826: cpu_frequency: state=300000 cpu_id=4
   1518 sugov:4-5860  ( 5860) [004] ...1   538.464842: cpu_frequency: state=300000 cpu_id=5
   1519 sugov:4-5860  ( 5860) [004] ...1   538.464851: cpu_frequency: state=300000 cpu_id=6
   1520 sugov:4-5860  ( 5860) [004] ...1   538.464859: cpu_frequency: state=300000 cpu_id=7
   1521 sugov:4-5860  ( 5860) [004] d..3   538.464875: sugov_set_iowait_boost: skipping iow boost
   1522 sugov:4-5860  ( 5860) [004] d..3   538.464904: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=perfd next_pid=813 next_prio=120
   1523 perfd-813 ( 813) [004] d..3   538.465000: sched_switch: prev_comm=perfd prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1524           <idle>-0     (-----) [004] dn.4   538.465028: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
   1525           <idle>-0     (-----) [004] d..3   538.465040: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
   1526 ksoftirqd/4-41 ( 41) [004] d.s4   538.465071: sched_wakeup: comm=kworker/4:2 pid=463 prio=120 target_cpu=004
   1527 ksoftirqd/4-41 ( 41) [004] d..3   538.465119: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=kworker/4:2 next_pid=463 next_prio=120
   1528 kworker/4:2-463 ( 463) [004] d..3   538.465219: sched_switch: prev_comm=kworker/4:2 prev_pid=463 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1529           <idle>-0     (-----) [004] d..2   538.465252: cpu_idle: state=2 cpu_id=4
   1530           <idle>-0     (-----) [000] d.h3   538.466013: sugov_set_iowait_boost: doing iow boost
   1531           <idle>-0     (-----) [000] dnh3   538.466049: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1532           <idle>-0     (-----) [000] .n.2   538.466072: cpu_idle: state=4294967295 cpu_id=0
   1533           <idle>-0     (-----) [000] d..3   538.466126: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1534 kworker/u16:11-682   (  682) [000] d..3   538.466544: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1535           <idle>-0     (-----) [000] d..2   538.466597: cpu_idle: state=2 cpu_id=0
   1536           <idle>-0     (-----) [000] d..4   538.552863: sugov_set_iowait_boost: doing iow boost
   1537           <idle>-0     (-----) [000] dn.4   538.552894: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
   1538           <idle>-0     (-----) [000] .n.2   538.552912: cpu_idle: state=4294967295 cpu_id=0
   1539           <idle>-0     (-----) [000] d..3   538.552966: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
   1540 ksoftirqd/0-3 ( 3) [000] d..3   538.553008: sugov_set_iowait_boost: doing iow boost
   1541 ksoftirqd/0-3 ( 3) [000] d..3   538.553069: 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
   1542           <idle>-0     (-----) [000] d..2   538.553108: cpu_idle: state=0 cpu_id=0
   1543           <idle>-0     (-----) [000] dnh5   538.553327: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1544           <idle>-0     (-----) [000] dns5   538.553410: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1545           <idle>-0     (-----) [000] .n.2   538.553444: cpu_idle: state=4294967295 cpu_id=0
   1546           <idle>-0     (-----) [000] d..3   538.553462: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1547 kworker/0:5-1633 ( 1633) [000] d..3   538.553600: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1548 kworker/u16:11-682   (  682) [000] d..5   538.553642: sched_wakeup: comm=kworker/0:0 pid=4 prio=120 target_cpu=000
   1549 kworker/u16:11-682   (  682) [000] d..3   538.553668: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=4 next_prio=120
   1550 kworker/0:0-4     (    4) [000] d..3   538.553728: sched_switch: prev_comm=kworker/0:0 prev_pid=4 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1551           <idle>-0     (-----) [000] d..2   538.553777: cpu_idle: state=2 cpu_id=0
   1552           <idle>-0     (-----) [000] d.h5   538.554501: sugov_set_iowait_boost: doing iow boost
   1553           <idle>-0     (-----) [000] dnh5   538.554533: sched_wakeup: comm=kworker/0:0 pid=4 prio=120 target_cpu=000
   1554           <idle>-0     (-----) [000] .n.2   538.554580: cpu_idle: state=4294967295 cpu_id=0
   1555           <idle>-0     (-----) [000] d..3   538.554629: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=4 next_prio=120
   1556 kworker/0:0-4     (    4) [000] d..4   538.554662: sched_blocked_reason: pid=1633 iowait=0 caller=qpnp_vadc_hc_read+0x18c/0x318
   1557 kworker/0:0-4     (    4) [000] d..4   538.554678: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1558 kworker/0:0-4     (    4) [000] d..3   538.554711: sched_switch: prev_comm=kworker/0:0 prev_pid=4 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1559 kworker/0:5-1633 ( 1633) [000] d..3   538.554939: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1560           <idle>-0     (-----) [000] d..2   538.554999: cpu_idle: state=2 cpu_id=0
   1561           <idle>-0     (-----) [004] d.h4   538.566043: sugov_set_iowait_boost: skipping iow boost
   1562           <idle>-0     (-----) [004] dnh4   538.566068: sched_wakeup: comm=perfd pid=813 prio=120 target_cpu=004
   1563           <idle>-0     (-----) [004] .n.2   538.566093: cpu_idle: state=4294967295 cpu_id=4
   1564           <idle>-0     (-----) [004] d..3   538.566136: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=perfd next_pid=813 next_prio=120
   1565 perfd-813 ( 813) [004] d..3   538.566230: sched_switch: prev_comm=perfd prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1566           <idle>-0     (-----) [004] dn.4   538.566255: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
   1567           <idle>-0     (-----) [004] d..3   538.566267: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
   1568 ksoftirqd/4-41 ( 41) [004] d.s4   538.566325: sched_wakeup: comm=kworker/4:2 pid=463 prio=120 target_cpu=004
   1569 ksoftirqd/4-41 ( 41) [004] d..3   538.566350: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=kworker/4:2 next_pid=463 next_prio=120
   1570 kworker/4:2-463 ( 463) [004] d..3   538.566451: sched_switch: prev_comm=kworker/4:2 prev_pid=463 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1571           <idle>-0     (-----) [004] d..2   538.566485: cpu_idle: state=2 cpu_id=4
   1572           <idle>-0     (-----) [000] d.h3   538.567215: sugov_set_iowait_boost: doing iow boost
   1573           <idle>-0     (-----) [000] dnh3   538.567250: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1574           <idle>-0     (-----) [000] .n.2   538.567273: cpu_idle: state=4294967295 cpu_id=0
   1575           <idle>-0     (-----) [000] d..3   538.567327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1576 kworker/u16:11-682   (  682) [000] d..3   538.567746: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1577           <idle>-0     (-----) [000] dn.4   538.567788: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
   1578           <idle>-0     (-----) [000] d..3   538.567808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
   1579 ksoftirqd/0-3 ( 3) [000] d..3   538.567862: 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
   1580           <idle>-0     (-----) [000] d..2   538.567909: cpu_idle: state=2 cpu_id=0
   1581           <idle>-0     (-----) [004] d.h4   538.587466: sugov_set_iowait_boost: skipping iow boost
   1582           <idle>-0     (-----) [004] dnh4   538.587491: sched_wakeup: comm=ChromiumNet pid=7539 prio=120 target_cpu=004
   1583           <idle>-0     (-----) [004] .n.2   538.587525: cpu_idle: state=4294967295 cpu_id=4
   1584           <idle>-0     (-----) [004] d..3   538.587566: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ChromiumNet next_pid=7539 next_prio=120
   1585 ChromiumNet-7539 ( 7459) [004] d..3   538.587805: sugov_set_iowait_boost: skipping iow boost
   1586 ChromiumNet-7539 ( 7459) [004] d..3   538.587853: sched_switch: prev_comm=ChromiumNet prev_pid=7539 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1587           <idle>-0     (-----) [004] dnh6   538.587883: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   1588           <idle>-0     (-----) [004] d..3   538.587898: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1589 sugov:4-5860  ( 5860) [004] ...1   538.587933: clock_set_rate: perfcl_clk state=345600000 cpu_id=4
   1590 sugov:4-5860  ( 5860) [004] ...1   538.587946: cpu_frequency: state=345600 cpu_id=4
   1591 sugov:4-5860  ( 5860) [004] ...1   538.587966: cpu_frequency: state=345600 cpu_id=5
   1592 sugov:4-5860  ( 5860) [004] ...1   538.587975: cpu_frequency: state=345600 cpu_id=6
   1593 sugov:4-5860  ( 5860) [004] ...1   538.587983: cpu_frequency: state=345600 cpu_id=7
   1594 sugov:4-5860  ( 5860) [004] d..3   538.587996: sugov_set_iowait_boost: skipping iow boost
   1595 sugov:4-5860  ( 5860) [004] d..3   538.588023: sugov_set_iowait_boost: skipping iow boost
   1596 sugov:4-5860  ( 5860) [004] d..3   538.588029: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1597           <idle>-0     (-----) [004] dn.4   538.588052: sched_wakeup: comm=ksoftirqd/4 pid=41 prio=120 target_cpu=004
   1598           <idle>-0     (-----) [004] d..3   538.588062: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=41 next_prio=120
   1599 ksoftirqd/4-41 ( 41) [004] d..3   538.588097: sched_switch: prev_comm=ksoftirqd/4 prev_pid=41 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1600           <idle>-0     (-----) [004] d..2   538.588125: cpu_idle: state=2 cpu_id=4
   1601           <idle>-0     (-----) [000] d.s6   538.611956: sugov_set_iowait_boost: doing iow boost
   1602           <idle>-0     (-----) [000] dns6   538.611985: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1603           <idle>-0     (-----) [000] .n.2   538.612011: cpu_idle: state=4294967295 cpu_id=0
   1604           <idle>-0     (-----) [000] d..3   538.612066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1605 kworker/u16:11-682   (  682) [000] d..4   538.612185: sugov_set_iowait_boost: doing iow boost
   1606 kworker/u16:11-682   (  682) [000] d..4   538.612199: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1607 kworker/u16:11-682   (  682) [000] d..3   538.612440: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1608 kworker/u16:12-1014 ( 1014) [000] d..3   538.612499: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1609           <idle>-0     (-----) [000] dn.4   538.612536: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
   1610           <idle>-0     (-----) [000] d..3   538.612553: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
   1611 ksoftirqd/0-3 ( 3) [000] d..3   538.612605: 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
   1612           <idle>-0     (-----) [000] d..2   538.612648: cpu_idle: state=2 cpu_id=0
   1613           <idle>-0     (-----) [006] d.h3   538.612734: sugov_set_iowait_boost: skipping iow boost
   1614           <idle>-0     (-----) [004] d.h4   538.612753: sugov_set_iowait_boost: skipping iow boost
   1615           <idle>-0     (-----) [006] dnh3   538.612757: sched_wakeup: comm=sensors (a] 1.0-ser pid=1593 prio=120 target_cpu=006
   1616           <idle>-0     (-----) [004] dnh4   538.612767: sched_wakeup: comm=ChromiumNet pid=7539 prio=120 target_cpu=004
   1617           <idle>-0     (-----) [006] .n.2   538.612772: cpu_idle: state=4294967295 cpu_id=6
   1618           <idle>-0     (-----) [004] .n.2   538.612785: cpu_idle: state=4294967295 cpu_id=4
   1619           <idle>-0     (-----) [006] d..3   538.612809: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sensors (a] 1.0-ser next_pid=1593 next_prio=120
   1620           <idle>-0     (-----) [004] d..3   538.612811: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ChromiumNet next_pid=7539 next_prio=120
   1621 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.612990: sched_wakeup: comm=android.hardwar pid=951 prio=120 target_cpu=004
   1622 ChromiumNet-7539 ( 7459) [004] d..3   538.613038: sched_switch: prev_comm=ChromiumNet prev_pid=7539 prev_prio=120 prev_state=S ==> next_comm=android.hardwar next_pid=951 next_prio=120
   1623 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.613047: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=1593 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1624           <idle>-0     (-----) [006] d..2   538.613081: cpu_idle: state=2 cpu_id=6
   1625 android.hardwar-951 ( 706) [004] d..3   538.613127: sched_wakeup: comm=android.hardwar pid=1066 prio=120 target_cpu=007
   1626 android.hardwar-951 ( 706) [004] d..3   538.613174: sched_switch: prev_comm=android.hardwar prev_pid=951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1627           <idle>-0     (-----) [004] d..2   538.613203: cpu_idle: state=2 cpu_id=4
   1628           <idle>-0     (-----) [007] .n.2   538.613389: cpu_idle: state=4294967295 cpu_id=7
   1629           <idle>-0     (-----) [007] d..3   538.613436: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1630 android.hardwar-1066 ( 706) [007] dn.3   538.613489: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1631 android.hardwar-1066 ( 706) [007] d..3   538.613503: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1632 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.613522: sugov_set_iowait_boost: skipping iow boost
   1633 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.613538: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1634 android.hardwar-1066 ( 706) [007] dn.3   538.613554: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1635 android.hardwar-1066 ( 706) [007] d..3   538.613560: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1636 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.613678: sugov_set_iowait_boost: skipping iow boost
   1637 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.613699: sugov_set_iowait_boost: skipping iow boost
   1638 sensors (a] 1.0-ser-706   (  706) [007] dnh6   538.613725: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=007
   1639 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.613740: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1640 sugov:4-5860  ( 5860) [007] ...1   538.613772: clock_set_rate: perfcl_clk state=499200000 cpu_id=7
   1641 sugov:4-5860  ( 5860) [007] ...1   538.613782: cpu_frequency: state=499200 cpu_id=4
   1642 sugov:4-5860  ( 5860) [007] ...1   538.613799: cpu_frequency: state=499200 cpu_id=5
   1643 sugov:4-5860  ( 5860) [007] ...1   538.613809: cpu_frequency: state=499200 cpu_id=6
   1644 sugov:4-5860  ( 5860) [007] ...1   538.613815: cpu_frequency: state=499200 cpu_id=7
   1645 sugov:4-5860  ( 5860) [007] d..3   538.613823: sugov_set_iowait_boost: skipping iow boost
   1646 sugov:4-5860  ( 5860) [007] d..3   538.613833: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1647 android.hardwar-1066 ( 706) [007] d..3   538.613854: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=S ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=120
   1648 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.613925: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1649           <idle>-0     (-----) [007] d..4   538.613941: sugov_set_iowait_boost: skipping iow boost
   1650           <idle>-0     (-----) [007] dn.4   538.613945: sched_wakeup: comm=ksoftirqd/7 pid=65 prio=120 target_cpu=007
   1651           <idle>-0     (-----) [007] d..3   538.613953: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/7 next_pid=65 next_prio=120
   1652 ksoftirqd/7-65 ( 65) [007] d..3   538.613983: sched_switch: prev_comm=ksoftirqd/7 prev_pid=65 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1653           <idle>-0     (-----) [007] d..2   538.614002: cpu_idle: state=2 cpu_id=7
   1654           <idle>-0     (-----) [001] dnh3   538.614580: sched_wakeup: comm=SensorService pid=1307 prio=89 target_cpu=001
   1655           <idle>-0     (-----) [001] .n.2   538.614609: cpu_idle: state=4294967295 cpu_id=1
   1656           <idle>-0     (-----) [001] d..3   538.614653: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SensorService next_pid=1307 next_prio=89
   1657 SensorService-1307 ( 1118) [001] d..3   538.615120: sugov_set_iowait_boost: doing iow boost
   1658 SensorService-1307 ( 1118) [001] d..3   538.615152: sugov_set_iowait_boost: doing iow boost
   1659 SensorService-1307 ( 1118) [001] d..3   538.615196: sugov_set_iowait_boost: doing iow boost
   1660 SensorService-1307 ( 1118) [001] d..3   538.615209: sched_switch: prev_comm=SensorService prev_pid=1307 prev_prio=89 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1661           <idle>-0     (-----) [001] d..2   538.615263: cpu_idle: state=2 cpu_id=1
   1662           <idle>-0     (-----) [004] d.h3   538.615802: sugov_set_iowait_boost: skipping iow boost
   1663           <idle>-0     (-----) [007] dnh3   538.615818: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=007
   1664           <idle>-0     (-----) [004] dnh3   538.615820: sched_wakeup: comm=android.youtube pid=7459 prio=110 target_cpu=004
   1665           <idle>-0     (-----) [004] .n.2   538.615831: cpu_idle: state=4294967295 cpu_id=4
   1666           <idle>-0     (-----) [007] .n.2   538.615831: cpu_idle: state=4294967295 cpu_id=7
   1667           <idle>-0     (-----) [007] d..3   538.615855: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1668           <idle>-0     (-----) [004] d..3   538.615858: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.youtube next_pid=7459 next_prio=110
   1669 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.615936: sugov_set_iowait_boost: skipping iow boost
   1670 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.615950: sugov_set_iowait_boost: skipping iow boost
   1671 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.615972: sugov_set_iowait_boost: skipping iow boost
   1672 sensors (a] 1.0-ser-706   (  706) [007] d..3   538.615976: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1673           <idle>-0     (-----) [007] d..2   538.616000: cpu_idle: state=2 cpu_id=7
   1674 android.youtube-7459 ( 7459) [004] d..3   538.616079: sugov_set_iowait_boost: skipping iow boost
   1675 android.youtube-7459 ( 7459) [004] d..3   538.616104: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1676           <idle>-0     (-----) [004] d..2   538.616126: cpu_idle: state=2 cpu_id=4
   1677           <idle>-0     (-----) [000] d.h4   538.666061: sugov_set_iowait_boost: doing iow boost
   1678           <idle>-0     (-----) [000] dnh4   538.666089: sched_wakeup: comm=WifiService pid=1449 prio=120 target_cpu=000
   1679           <idle>-0     (-----) [000] .n.2   538.666132: cpu_idle: state=4294967295 cpu_id=0
   1680           <idle>-0     (-----) [000] d..3   538.666184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=WifiService next_pid=1449 next_prio=120
   1681 WifiService-1449 ( 1118) [000] d.h4   538.666716: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1682 WifiService-1449 ( 1118) [000] d.s4   538.666763: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1683 WifiService-1449 ( 1118) [000] d..4   538.666959: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   1684           <idle>-0     (-----) [004] d.h4   538.667140: sugov_set_iowait_boost: skipping iow boost
   1685           <idle>-0     (-----) [004] dnh4   538.667160: sched_wakeup: comm=perfd pid=813 prio=120 target_cpu=004
   1686           <idle>-0     (-----) [004] dnh5   538.667194: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   1687           <idle>-0     (-----) [004] .n.2   538.667203: cpu_idle: state=4294967295 cpu_id=4
   1688           <idle>-0     (-----) [004] d..3   538.667228: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1689 sugov:4-5860  ( 5860) [004] ...1   538.667252: clock_set_rate: perfcl_clk state=300000000 cpu_id=4
   1690 sugov:4-5860  ( 5860) [004] ...1   538.667261: cpu_frequency: state=300000 cpu_id=4
   1691 sugov:4-5860  ( 5860) [004] ...1   538.667275: cpu_frequency: state=300000 cpu_id=5
   1692 sugov:4-5860  ( 5860) [004] ...1   538.667283: cpu_frequency: state=300000 cpu_id=6
   1693 sugov:4-5860  ( 5860) [004] ...1   538.667291: cpu_frequency: state=300000 cpu_id=7
   1694 sugov:4-5860  ( 5860) [004] d..3   538.667306: sugov_set_iowait_boost: skipping iow boost
   1695 sugov:4-5860  ( 5860) [004] d..3   538.667329: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=perfd next_pid=813 next_prio=120
   1696 perfd-813 ( 813) [004] d..3   538.667425: sched_switch: prev_comm=perfd prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1697           <idle>-0     (-----) [004] d..2   538.667460: cpu_idle: state=2 cpu_id=4
   1698 WifiService-1449 ( 1118) [000] d..5   538.667675: sched_wakeup: comm=wlan_logging_th pid=1604 prio=118 target_cpu=002
   1699           <idle>-0     (-----) [002] .n.2   538.667879: cpu_idle: state=4294967295 cpu_id=2
   1700           <idle>-0     (-----) [002] d..3   538.667920: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wlan_logging_th next_pid=1604 next_prio=118
   1701 wlan_logging_th-1604 ( 1604) [002] d..4   538.668005: sugov_set_iowait_boost: doing iow boost
   1702 wlan_logging_th-1604 ( 1604) [002] d..4   538.668016: sugov_set_iowait_boost: doing iow boost
   1703 wlan_logging_th-1604 ( 1604) [002] d..4   538.668029: sched_wakeup: comm=wifi (a] 1.0-servic pid=1969 prio=120 target_cpu=002
   1704 wlan_logging_th-1604 ( 1604) [002] d..4   538.668067: sugov_set_iowait_boost: doing iow boost
   1705 wlan_logging_th-1604 ( 1604) [002] d..4   538.668078: sched_wakeup: comm=cnss_diag pid=829 prio=120 target_cpu=002
   1706 wlan_logging_th-1604 ( 1604) [002] d..3   538.668136: sched_switch: prev_comm=wlan_logging_th prev_pid=1604 prev_prio=118 prev_state=S ==> next_comm=wifi (a] 1.0-servic next_pid=1969 next_prio=120
   1707 wifi (a] 1.0-servic-1969 ( 712) [002] d..5   538.668829: sched_wakeup: comm=HwBinder:1118_1 pid=1165 prio=118 target_cpu=001
   1708 WifiService-1449 ( 1118) [000] d..5   538.668895: sched_wakeup: comm=Binder:1697_3 pid=1957 prio=120 target_cpu=003
   1709           <idle>-0     (-----) [001] .n.2   538.669030: cpu_idle: state=4294967295 cpu_id=1
   1710 WifiService-1449 ( 1118) [000] d..3   538.669034: sugov_set_iowait_boost: doing iow boost
   1711 WifiService-1449 ( 1118) [000] d..3   538.669059: sched_switch: prev_comm=WifiService prev_pid=1449 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1712           <idle>-0     (-----) [001] d..3   538.669072: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:1118_1 next_pid=1165 next_prio=118
   1713           <idle>-0     (-----) [003] .n.2   538.669088: cpu_idle: state=4294967295 cpu_id=3
   1714           <idle>-0     (-----) [003] d..3   538.669131: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:1697_3 next_pid=1957 next_prio=120
   1715 kworker/0:5-1633 ( 1633) [000] d..3   538.669152: sugov_set_iowait_boost: doing iow boost
   1716 kworker/0:5-1633 ( 1633) [000] d..3   538.669172: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   1717 rcuop/0-10    (   10) [000] d..4   538.669213: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1718 rcuop/0-10    (   10) [000] d..3   538.669235: 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
   1719 rcu_preempt-7     (    7) [000] d..3   538.669267: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1720 kworker/u16:12-1014 ( 1014) [000] d..4   538.669311: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1721 kworker/u16:12-1014 ( 1014) [000] d..5   538.669336: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1722 Binder:1697_3-1957  ( 1697) [003] d..3   538.669558: sched_switch: prev_comm=Binder:1697_3 prev_pid=1957 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
   1723           <idle>-0     (-----) [003] d..2   538.669612: cpu_idle: state=2 cpu_id=3
   1724 kworker/u16:12-1014 ( 1014) [000] d..3   538.669690: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1725 kworker/0:5-1633 ( 1633) [000] d..3   538.669729: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1726 wifi (a] 1.0-servic-1969 ( 712) [002] d..3   538.669744: sugov_set_iowait_boost: doing iow boost
   1727 wifi (a] 1.0-servic-1969 ( 712) [002] d..3   538.669771: sched_switch: prev_comm=wifi (a] 1.0-servic prev_pid=1969 prev_prio=120 prev_state=S ==> next_comm=cnss_diag next_pid=829 next_prio=120
   1728 kworker/u16:11-682   (  682) [000] d..3   538.669778: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1729           <idle>-0     (-----) [000] d..2   538.669830: cpu_idle: state=2 cpu_id=0
   1730 cnss_diag-829 ( 829) [002] d.h2   538.669938: sugov_set_iowait_boost: doing iow boost
   1731 HwBinder:1118_1-1165  ( 1118) [001] d.h2   538.669950: sugov_set_iowait_boost: doing iow boost
   1732           <idle>-0     (-----) [006] d.h3   538.670258: sugov_set_iowait_boost: skipping iow boost
   1733           <idle>-0     (-----) [006] d.h3   538.670274: sugov_set_iowait_boost: skipping iow boost
   1734           <idle>-0     (-----) [006] dnh3   538.670288: sched_wakeup: comm=ndroid.systemui pid=1697 prio=120 target_cpu=006
   1735           <idle>-0     (-----) [006] .n.2   538.670306: cpu_idle: state=4294967295 cpu_id=6
   1736           <idle>-0     (-----) [006] d..3   538.670347: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=1697 next_prio=120
   1737 cnss_diag-829 ( 829) [002] d..3   538.670677: sched_switch: prev_comm=cnss_diag prev_pid=829 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   1738           <idle>-0     (-----) [002] d..2   538.670732: cpu_idle: state=2 cpu_id=2
   1739 ndroid.systemui-1697  ( 1697) [006] d..3   538.670842: sched_switch: prev_comm=ndroid.systemui prev_pid=1697 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1740           <idle>-0     (-----) [006] d..2   538.670886: cpu_idle: state=2 cpu_id=6
   1741 HwBinder:1118_1-1165  ( 1118) [001] d.h2   538.673279: sugov_set_iowait_boost: doing iow boost
   1742           <idle>-0     (-----) [000] d.s4   538.673575: sugov_set_iowait_boost: doing iow boost
   1743           <idle>-0     (-----) [000] dns4   538.673594: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1744           <idle>-0     (-----) [000] .n.2   538.673638: cpu_idle: state=4294967295 cpu_id=0
   1745           <idle>-0     (-----) [000] d..3   538.673669: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   1746 rcu_preempt-7     (    7) [000] d..5   538.673744: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   1747 rcu_preempt-7     (    7) [000] d..3   538.673769: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   1748 rcuop/0-10    (   10) [000] d..3   538.673852: 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
   1749           <idle>-0     (-----) [000] d..2   538.673902: cpu_idle: state=2 cpu_id=0
   1750 HwBinder:1118_1-1165  ( 1118) [001] d.h2   538.676608: sugov_set_iowait_boost: doing iow boost
   1751 HwBinder:1118_1-1165  ( 1118) [001] d.h2   538.679943: sugov_set_iowait_boost: doing iow boost
   1752 HwBinder:1118_1-1165  ( 1118) [001] d.h2   538.683277: sugov_set_iowait_boost: doing iow boost
   1753 HwBinder:1118_1-1165  ( 1118) [001] d.h4   538.683386: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1754           <idle>-0     (-----) [000] .n.2   538.683586: cpu_idle: state=4294967295 cpu_id=0
   1755           <idle>-0     (-----) [000] d..3   538.683629: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1756 kworker/u16:11-682   (  682) [000] d..5   538.683672: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1757 kworker/u16:11-682   (  682) [000] d..3   538.683699: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1758 kworker/0:5-1633 ( 1633) [000] d..3   538.683764: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1759           <idle>-0     (-----) [000] d..2   538.683800: cpu_idle: state=2 cpu_id=0
   1760 HwBinder:1118_1-1165  ( 1118) [001] d..3   538.684128: sugov_set_iowait_boost: doing iow boost
   1761 HwBinder:1118_1-1165  ( 1118) [001] d..3   538.684177: sched_switch: prev_comm=HwBinder:1118_1 prev_pid=1165 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1762           <idle>-0     (-----) [001] d..2   538.684236: cpu_idle: state=2 cpu_id=1
   1763           <idle>-0     (-----) [000] d.s6   538.727380: sugov_set_iowait_boost: doing iow boost
   1764           <idle>-0     (-----) [000] dns6   538.727410: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   1765           <idle>-0     (-----) [000] .n.2   538.727436: cpu_idle: state=4294967295 cpu_id=0
   1766           <idle>-0     (-----) [000] d..3   538.727490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   1767 kworker/u16:11-682   (  682) [000] d..4   538.727576: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1768 kworker/u16:11-682   (  682) [000] d..3   538.727828: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1769 kworker/u16:12-1014 ( 1014) [000] d..3   538.727887: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1770           <idle>-0     (-----) [000] dn.4   538.727926: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
   1771           <idle>-0     (-----) [000] d..3   538.727945: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
   1772 ksoftirqd/0-3 ( 3) [000] d..3   538.728000: 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
   1773           <idle>-0     (-----) [000] d..2   538.728045: cpu_idle: state=2 cpu_id=0
   1774           <idle>-0     (-----) [006] d.h3   538.728708: sugov_set_iowait_boost: skipping iow boost
   1775           <idle>-0     (-----) [006] dnh3   538.728736: sched_wakeup: comm=sensors (a] 1.0-ser pid=1593 prio=120 target_cpu=006
   1776           <idle>-0     (-----) [006] .n.2   538.728755: cpu_idle: state=4294967295 cpu_id=6
   1777           <idle>-0     (-----) [006] d..3   538.728797: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sensors (a] 1.0-ser next_pid=1593 next_prio=120
   1778 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.729001: sugov_set_iowait_boost: skipping iow boost
   1779 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.729012: sched_wakeup: comm=android.hardwar pid=951 prio=120 target_cpu=006
   1780 sensors (a] 1.0-ser-1593 ( 706) [006] d..3   538.729052: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=1593 prev_prio=120 prev_state=S ==> next_comm=android.hardwar next_pid=951 next_prio=120
   1781 android.hardwar-951 ( 706) [006] d..3   538.729135: sugov_set_iowait_boost: skipping iow boost
   1782 android.hardwar-951 ( 706) [006] d..3   538.729143: sched_wakeup: comm=android.hardwar pid=1066 prio=120 target_cpu=006
   1783 android.hardwar-951 ( 706) [006] d..3   538.729166: sched_switch: prev_comm=android.hardwar prev_pid=951 prev_prio=120 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1784 android.hardwar-1066 ( 706) [006] dn.3   538.729217: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=006
   1785 android.hardwar-1066 ( 706) [006] d..3   538.729230: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1786 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.729250: sugov_set_iowait_boost: skipping iow boost
   1787 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.729266: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1788 android.hardwar-1066 ( 706) [006] dn.3   538.729283: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=006
   1789 android.hardwar-1066 ( 706) [006] d..3   538.729291: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=R+ ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1790 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.729420: sugov_set_iowait_boost: skipping iow boost
   1791 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.729442: sugov_set_iowait_boost: skipping iow boost
   1792 sensors (a] 1.0-ser-706   (  706) [006] dnh6   538.729471: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=006
   1793 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.729486: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   1794 sugov:4-5860  ( 5860) [006] ...1   538.729523: clock_set_rate: perfcl_clk state=422400000 cpu_id=6
   1795 sugov:4-5860  ( 5860) [006] ...1   538.729535: cpu_frequency: state=422400 cpu_id=4
   1796 sugov:4-5860  ( 5860) [006] ...1   538.729555: cpu_frequency: state=422400 cpu_id=5
   1797 sugov:4-5860  ( 5860) [006] ...1   538.729564: cpu_frequency: state=422400 cpu_id=6
   1798 sugov:4-5860  ( 5860) [006] ...1   538.729572: cpu_frequency: state=422400 cpu_id=7
   1799 sugov:4-5860  ( 5860) [006] d..3   538.729585: sugov_set_iowait_boost: skipping iow boost
   1800 sugov:4-5860  ( 5860) [006] d..3   538.729599: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=android.hardwar next_pid=1066 next_prio=120
   1801 android.hardwar-1066 ( 706) [006] d..3   538.729620: sched_switch: prev_comm=android.hardwar prev_pid=1066 prev_prio=120 prev_state=S ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=120
   1802 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.729703: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1803           <idle>-0     (-----) [006] d..2   538.729732: cpu_idle: state=2 cpu_id=6
   1804           <idle>-0     (-----) [001] dnh3   538.730335: sched_wakeup: comm=SensorService pid=1307 prio=89 target_cpu=001
   1805           <idle>-0     (-----) [001] .n.2   538.730362: cpu_idle: state=4294967295 cpu_id=1
   1806           <idle>-0     (-----) [001] d..3   538.730406: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SensorService next_pid=1307 next_prio=89
   1807 SensorService-1307 ( 1118) [001] d..3   538.730872: sugov_set_iowait_boost: doing iow boost
   1808 SensorService-1307 ( 1118) [001] d..3   538.730903: sugov_set_iowait_boost: doing iow boost
   1809 SensorService-1307 ( 1118) [001] d..3   538.730944: sugov_set_iowait_boost: doing iow boost
   1810 SensorService-1307 ( 1118) [001] d..3   538.730957: sched_switch: prev_comm=SensorService prev_pid=1307 prev_prio=89 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1811           <idle>-0     (-----) [001] dn.4   538.731003: sched_wakeup: comm=ksoftirqd/1 pid=17 prio=120 target_cpu=001
   1812           <idle>-0     (-----) [001] d..3   538.731026: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=17 next_prio=120
   1813 ksoftirqd/1-17 ( 17) [001] d..3   538.731086: sched_switch: prev_comm=ksoftirqd/1 prev_pid=17 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1814           <idle>-0     (-----) [001] d..2   538.731134: cpu_idle: state=2 cpu_id=1
   1815           <idle>-0     (-----) [004] d.h3   538.731541: sugov_set_iowait_boost: skipping iow boost
   1816           <idle>-0     (-----) [006] dnh3   538.731558: sched_wakeup: comm=sensors (a] 1.0-ser pid=706 prio=89 target_cpu=006
   1817           <idle>-0     (-----) [004] dnh3   538.731560: sched_wakeup: comm=android.youtube pid=7459 prio=110 target_cpu=004
   1818           <idle>-0     (-----) [004] .n.2   538.731574: cpu_idle: state=4294967295 cpu_id=4
   1819           <idle>-0     (-----) [006] .n.2   538.731576: cpu_idle: state=4294967295 cpu_id=6
   1820           <idle>-0     (-----) [006] d..3   538.731602: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sensors (a] 1.0-ser next_pid=706 next_prio=89
   1821           <idle>-0     (-----) [004] d..3   538.731606: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.youtube next_pid=7459 next_prio=110
   1822 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.731691: sugov_set_iowait_boost: skipping iow boost
   1823 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.731708: sugov_set_iowait_boost: skipping iow boost
   1824 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.731731: sugov_set_iowait_boost: skipping iow boost
   1825 sensors (a] 1.0-ser-706   (  706) [006] d..3   538.731737: sched_switch: prev_comm=sensors (a] 1.0-ser prev_pid=706 prev_prio=89 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1826           <idle>-0     (-----) [006] d..2   538.731764: cpu_idle: state=2 cpu_id=6
   1827 android.youtube-7459 ( 7459) [004] d..3   538.731849: sugov_set_iowait_boost: skipping iow boost
   1828 android.youtube-7459 ( 7459) [004] d..3   538.731881: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1829           <idle>-0     (-----) [004] d..2   538.731906: cpu_idle: state=2 cpu_id=4
   1830           <idle>-0     (-----) [005] d.h4   538.734902: sched_wakeup: comm=background2-12 pid=7553 prio=130 target_cpu=004
   1831           <idle>-0     (-----) [005] d..4   538.734926: sugov_set_iowait_boost: skipping iow boost
   1832           <idle>-0     (-----) [005] dn.4   538.734932: sched_wakeup: comm=ksoftirqd/5 pid=49 prio=120 target_cpu=005
   1833           <idle>-0     (-----) [005] .n.2   538.734938: cpu_idle: state=4294967295 cpu_id=5
   1834           <idle>-0     (-----) [005] d..3   538.734960: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=49 next_prio=120
   1835 ksoftirqd/5-49 ( 49) [005] d..3   538.735002: sched_switch: prev_comm=ksoftirqd/5 prev_pid=49 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   1836           <idle>-0     (-----) [005] d..2   538.735023: cpu_idle: state=2 cpu_id=5
   1837           <idle>-0     (-----) [004] .n.2   538.735059: cpu_idle: state=4294967295 cpu_id=4
   1838           <idle>-0     (-----) [004] d..3   538.735086: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=background2-12 next_pid=7553 next_prio=130
   1839 background2-12-7553 ( 7459) [004] d..3   538.735217: sched_wakeup: comm=background2-2 pid=7481 prio=130 target_cpu=005
   1840           <idle>-0     (-----) [005] .n.2   538.735377: cpu_idle: state=4294967295 cpu_id=5
   1841           <idle>-0     (-----) [005] d..3   538.735401: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=background2-2 next_pid=7481 next_prio=130
   1842 background2-2-7481 ( 7459) [005] d..3   538.735486: sugov_set_iowait_boost: skipping iow boost
   1843 background2-2-7481 ( 7459) [005] d..3   538.735507: sched_switch: prev_comm=background2-2 prev_pid=7481 prev_prio=130 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   1844           <idle>-0     (-----) [005] d..2   538.735527: cpu_idle: state=2 cpu_id=5
   1845 background2-12-7553 ( 7459) [004] d..3   538.735793: sched_wakeup: comm=Jit thread pool pid=7464 prio=129 target_cpu=005
   1846           <idle>-0     (-----) [005] .n.2   538.735954: cpu_idle: state=4294967295 cpu_id=5
   1847           <idle>-0     (-----) [005] d..3   538.735978: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=7464 next_prio=129
   1848 Jit thread pool-7464  (-----) [005] d.h2   538.736598: sugov_set_iowait_boost: skipping iow boost
   1849 background2-12-7553 ( 7459) [004] d.h2   538.736605: sugov_set_iowait_boost: skipping iow boost
   1850 background2-12-7553 ( 7459) [004] d..5   538.737468: sched_wakeup: comm=android.youtube pid=7459 prio=110 target_cpu=006
   1851           <idle>-0     (-----) [000] d.h3   538.737493: sugov_set_iowait_boost: doing iow boost
   1852           <idle>-0     (-----) [000] dnh3   538.737524: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   1853 background2-12-7553 ( 7459) [004] d..3   538.737541: sched_wakeup: comm=background2-6 pid=7489 prio=130 target_cpu=007
   1854           <idle>-0     (-----) [000] .n.2   538.737545: cpu_idle: state=4294967295 cpu_id=0
   1855           <idle>-0     (-----) [000] d..3   538.737595: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   1856 background2-12-7553 ( 7459) [004] d..3   538.737598: sugov_set_iowait_boost: skipping iow boost
   1857 background2-12-7553 ( 7459) [004] d..3   538.737622: sched_switch: prev_comm=background2-12 prev_pid=7553 prev_prio=130 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1858           <idle>-0     (-----) [006] .n.2   538.737628: cpu_idle: state=4294967295 cpu_id=6
   1859 kworker/u16:12-1014 ( 1014) [000] d..5   538.737645: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   1860           <idle>-0     (-----) [004] d..2   538.737651: cpu_idle: state=2 cpu_id=4
   1861           <idle>-0     (-----) [006] d..3   538.737654: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.youtube next_pid=7459 next_prio=110
   1862 kworker/u16:12-1014 ( 1014) [000] d..3   538.737678: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   1863           <idle>-0     (-----) [007] .n.2   538.737705: cpu_idle: state=4294967295 cpu_id=7
   1864 kworker/0:5-1633 ( 1633) [000] d..3   538.737709: sugov_set_iowait_boost: doing iow boost
   1865           <idle>-0     (-----) [007] d..3   538.737735: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=background2-6 next_pid=7489 next_prio=130
   1866 kworker/0:5-1633 ( 1633) [000] d..3   538.737762: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1867           <idle>-0     (-----) [000] d..2   538.737808: cpu_idle: state=2 cpu_id=0
   1868 background2-6-7489 ( 7459) [007] d..3   538.737811: sugov_set_iowait_boost: skipping iow boost
   1869 background2-6-7489 ( 7459) [007] d..3   538.737839: sched_switch: prev_comm=background2-6 prev_pid=7489 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
   1870           <idle>-0     (-----) [007] d..2   538.737863: cpu_idle: state=2 cpu_id=7
   1871 android.youtube-7459 ( 7459) [006] d..5   538.738370: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=004
   1872           <idle>-0     (-----) [004] .n.2   538.738526: cpu_idle: state=4294967295 cpu_id=4
   1873           <idle>-0     (-----) [004] d..3   538.738551: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=7591 next_prio=110
   1874 RenderThread-7591 ( 7459) [004] ...1   538.738762: tracing_mark_write: B|7459|notifyFramePending
   1875 RenderThread-7591 ( 7459) [004] ...1   538.738774: tracing_mark_write: E
   1876 RenderThread-7591 ( 7459) [004] d..3   538.738823: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   1877           <idle>-0     (-----) [004] d..2   538.738877: cpu_idle: state=2 cpu_id=4
   1878           <idle>-0     (-----) [001] d.h3   538.739408: sugov_set_iowait_boost: doing iow boost
   1879           <idle>-0     (-----) [000] d.h3   538.739427: sugov_set_iowait_boost: doing iow boost
   1880           <idle>-0     (-----) [001] dnh3   538.739439: sched_wakeup: comm=rcuop/4 pid=44 prio=120 target_cpu=001
   1881           <idle>-0     (-----) [000] d.h3   538.739440: sugov_set_iowait_boost: doing iow boost
   1882           <idle>-0     (-----) [000] dnh3   538.739454: sched_wakeup: comm=Binder:594_5 pid=2074 prio=120 target_cpu=000
   1883           <idle>-0     (-----) [001] .n.2   538.739461: cpu_idle: state=4294967295 cpu_id=1
   1884           <idle>-0     (-----) [000] .n.2   538.739469: cpu_idle: state=4294967295 cpu_id=0
   1885           <idle>-0     (-----) [000] d..3   538.739510: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:594_5 next_pid=2074 next_prio=120
   1886           <idle>-0     (-----) [001] d..3   538.739510: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=44 next_prio=120
   1887 rcuop/4-44    (   44) [001] d..4   538.739603: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   1888 android.youtube-7459 ( 7459) [006] d..3   538.739632: sugov_set_iowait_boost: skipping iow boost
   1889 rcuop/4-44    (   44) [001] d..3   538.739660: sched_switch: prev_comm=rcuop/4 prev_pid=44 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1890 android.youtube-7459 ( 7459) [006] d..3   538.739663: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   1891           <idle>-0     (-----) [006] d..2   538.739690: cpu_idle: state=2 cpu_id=6
   1892           <idle>-0     (-----) [001] d..2   538.739708: cpu_idle: state=2 cpu_id=1
   1893 Jit thread pool-7464  (-----) [005] d.h2   538.739931: sugov_set_iowait_boost: skipping iow boost
   1894 Binder:594_5-2074 ( 594) [000] d.h3   538.739941: sugov_set_iowait_boost: doing iow boost
   1895 Binder:594_5-2074 ( 594) [000] dn.5   538.740112: sched_wakeup: comm=composer (a] 2.1-se pid=596 prio=97 target_cpu=000
   1896 Binder:594_5-2074 ( 594) [000] d..3   538.740134: sched_switch: prev_comm=Binder:594_5 prev_pid=2074 prev_prio=120 prev_state=R+ ==> next_comm=composer (a] 2.1-se next_pid=596 next_prio=97
   1897 composer (a] 2.1-se-596   (  596) [000] d..3   538.740340: sugov_set_iowait_boost: doing iow boost
   1898 composer (a] 2.1-se-596   (  596) [000] d..3   538.740371: sched_switch: prev_comm=composer (a] 2.1-se prev_pid=596 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   1899 rcu_preempt-7     (    7) [000] d..3   538.740410: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:594_5 next_pid=2074 next_prio=120
   1900 Binder:594_5-2074 ( 594) [000] d..4   538.740513: sched_wakeup: comm=system pid=105 prio=120 target_cpu=001
   1901 Binder:594_5-2074 ( 594) [000] d..4   538.740593: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   1902           <idle>-0     (-----) [001] .n.2   538.740700: cpu_idle: state=4294967295 cpu_id=1
   1903 Binder:594_5-2074 ( 594) [000] ...1   538.740734: clock_set_rate: ahb_clk_src state=19200000 cpu_id=0
   1904           <idle>-0     (-----) [001] d..3   538.740738: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=105 next_prio=120
   1905 Jit thread pool-7464  (-----) [005] d..3   538.740957: sugov_set_iowait_boost: skipping iow boost
   1906 system-105 ( 105) [001] d..3   538.740961: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   1907 Jit thread pool-7464  (-----) [005] d..3   538.740987: sched_switch: prev_comm=Jit thread pool prev_pid=7464 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   1908           <idle>-0     (-----) [001] d..2   538.741000: cpu_idle: state=2 cpu_id=1
   1909           <idle>-0     (-----) [005] d..2   538.741019: cpu_idle: state=2 cpu_id=5
   1910 Binder:594_5-2074 ( 594) [000] ...1   538.741637: clock_set_rate: ahb_clk_src state=19200000 cpu_id=0
   1911 Binder:594_5-2074 ( 594) [000] ...1   538.741842: clock_set_rate: ahb_clk_src state=19200000 cpu_id=0
   1912 Binder:594_5-2074 ( 594) [000] ...1   538.742734: clock_set_rate: ahb_clk_src state=19200000 cpu_id=0
   1913 Binder:594_5-2074 ( 594) [000] d..4   538.742939: sched_wakeup: comm=system pid=105 prio=120 target_cpu=001
   1914 Binder:594_5-2074 ( 594) [000] d..3   538.743061: sched_wakeup: comm=DispSync pid=615 prio=97 target_cpu=002
   1915 Binder:594_5-2074 ( 594) [000] d..3   538.743113: sched_wakeup: comm=EventControl pid=654 prio=112 target_cpu=003
   1916           <idle>-0     (-----) [001] .n.2   538.743132: cpu_idle: state=4294967295 cpu_id=1
   1917 Binder:594_5-2074 ( 594) [000] dn.3   538.743152: sched_wakeup: comm=EventThread pid=627 prio=97 target_cpu=000
   1918           <idle>-0     (-----) [001] d..3   538.743169: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=105 next_prio=120
   1919 Binder:594_5-2074 ( 594) [000] dn.3   538.743170: sugov_set_iowait_boost: doing iow boost
   1920 Binder:594_5-2074 ( 594) [000] d..3   538.743182: sched_switch: prev_comm=Binder:594_5 prev_pid=2074 prev_prio=120 prev_state=R+ ==> next_comm=EventThread next_pid=627 next_prio=97
   1921 EventThread-627 ( 594) [000] d..3   538.743218: sugov_set_iowait_boost: doing iow boost
   1922 EventThread-627 ( 594) [000] d..3   538.743243: sched_switch: prev_comm=EventThread prev_pid=627 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   1923           <idle>-0     (-----) [002] .n.2   538.743263: cpu_idle: state=4294967295 cpu_id=2
   1924           <idle>-0     (-----) [002] d..3   538.743301: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=615 next_prio=97
   1925           <idle>-0     (-----) [003] .n.2   538.743316: cpu_idle: state=4294967295 cpu_id=3
   1926 rcuop/0-10    (   10) [000] d..3   538.743325: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=Binder:594_5 next_pid=2074 next_prio=120
   1927 DispSync-615   (  594) [002] d..3   538.743340: sugov_set_iowait_boost: doing iow boost
   1928 Binder:594_5-2074 ( 594) [000] dn.3   538.743358: sched_wakeup: comm=EventThread pid=627 prio=97 target_cpu=000
   1929           <idle>-0     (-----) [003] d..3   538.743359: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=EventControl next_pid=654 next_prio=112
   1930 DispSync-615   (  594) [002] d..3   538.743364: sugov_set_iowait_boost: doing iow boost
   1931 Binder:594_5-2074 ( 594) [000] d..3   538.743374: sched_switch: prev_comm=Binder:594_5 prev_pid=2074 prev_prio=120 prev_state=R+ ==> next_comm=EventThread next_pid=627 next_prio=97
   1932 DispSync-615   (  594) [002] d..3   538.743397: sugov_set_iowait_boost: doing iow boost
   1933 DispSync-615   (  594) [002] d..3   538.743408: sched_switch: prev_comm=DispSync prev_pid=615 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   1934 EventControl-654   (  594) [003] ...1   538.743421: tracing_mark_write: B|594|setVsyncEnabled
   1935 EventControl-654   (  594) [003] ...1   538.743444: tracing_mark_write: B|594|setVsyncEnabled
   1936           <idle>-0     (-----) [002] d..2   538.743448: cpu_idle: state=2 cpu_id=2
   1937 EventThread-627 ( 594) [000] d..3   538.743458: sched_wakeup: comm=DispSync pid=615 prio=97 target_cpu=002
   1938           <idle>-0     (-----) [002] .n.2   538.743480: cpu_idle: state=4294967295 cpu_id=2
   1939           <idle>-0     (-----) [002] d..3   538.743501: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=615 next_prio=97
   1940 DispSync-615   (  594) [002] d..3   538.743531: sugov_set_iowait_boost: doing iow boost
   1941 EventControl-654   (  594) [003] d..5   538.743547: sched_wakeup: comm=composer (a] 2.1-se pid=596 prio=97 target_cpu=001
   1942 DispSync-615   (  594) [002] d..3   538.743568: sugov_set_iowait_boost: doing iow boost
   1943 DispSync-615   (  594) [002] d..3   538.743579: sched_switch: prev_comm=DispSync prev_pid=615 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   1944 EventControl-654   (  594) [003] d..3   538.743601: sugov_set_iowait_boost: doing iow boost
   1945           <idle>-0     (-----) [002] d..2   538.743613: cpu_idle: state=2 cpu_id=2
   1946 EventControl-654   (  594) [003] d..3   538.743646: sched_switch: prev_comm=EventControl prev_pid=654 prev_prio=112 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
   1947 system-105 ( 105) [001] dn.3   538.743658: sugov_set_iowait_boost: doing iow boost
   1948 system-105 ( 105) [001] d..3   538.743672: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=composer (a] 2.1-se next_pid=596 next_prio=97
   1949           <idle>-0     (-----) [003] d..2   538.743688: cpu_idle: state=2 cpu_id=3
   1950 composer (a] 2.1-se-596   (  596) [001] ...1   538.743786: tracing_mark_write: B|596|HWPrimary::SetVSyncState::
   1951 composer (a] 2.1-se-596   (  596) [001] ...1   538.744049: clock_set_rate: cnoc_a_clk state=19200000 cpu_id=1
   1952 composer (a] 2.1-se-596   (  596) [001] d..7   538.744206: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   1953 composer (a] 2.1-se-596   (  596) [001] d..3   538.744228: sugov_set_iowait_boost: doing iow boost
   1954 composer (a] 2.1-se-596   (  596) [001] d..3   538.744254: sched_switch: prev_comm=composer (a] 2.1-se prev_pid=596 prev_prio=97 prev_state=D ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   1955 EventThread-627 ( 594) [000] d..5   538.744280: sched_wakeup: comm=Binder:1118_7 pid=1846 prio=120 target_cpu=002
   1956 smem_native_rpm-87    (   87) [001] dn.7   538.744332: sched_wakeup: comm=composer (a] 2.1-se pid=596 prio=97 target_cpu=001
   1957 EventThread-627 ( 594) [000] d..3   538.744357: sugov_set_iowait_boost: doing iow boost
   1958 EventThread-627 ( 594) [000] d..3   538.744381: sugov_set_iowait_boost: doing iow boost
   1959 smem_native_rpm-87    (   87) [001] d..3   538.744382: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=R+ ==> next_comm=composer (a] 2.1-se next_pid=596 next_prio=97
   1960 EventThread-627 ( 594) [000] d..3   538.744392: sched_switch: prev_comm=EventThread prev_pid=627 prev_prio=97 prev_state=S ==> next_comm=Binder:594_5 next_pid=2074 next_prio=120
   1961 composer (a] 2.1-se-596   (  596) [001] ...1   538.744408: clock_set_rate: ahb_clk_src state=19200000 cpu_id=1
   1962           <idle>-0     (-----) [002] .n.2   538.744472: cpu_idle: state=4294967295 cpu_id=2
   1963 Binder:594_5-2074 ( 594) [000] d..3   538.744489: sched_switch: prev_comm=Binder:594_5 prev_pid=2074 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   1964           <idle>-0     (-----) [002] d..3   538.744509: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:1118_7 next_pid=1846 next_prio=120
   1965           <idle>-0     (-----) [000] d..2   538.744536: cpu_idle: state=2 cpu_id=0
   1966 composer (a] 2.1-se-596   (  596) [001] ...1   538.744656: clock_set_rate: bimc_msmbus_clk state=104162969 cpu_id=1
   1967 composer (a] 2.1-se-596   (  596) [001] ...1   538.744663: clock_set_rate: bimc_clk state=104162969 cpu_id=1
   1968 composer (a] 2.1-se-596   (  596) [001] d..3   538.744768: sugov_set_iowait_boost: doing iow boost
   1969 composer (a] 2.1-se-596   (  596) [001] d..3   538.744789: sugov_set_iowait_boost: doing iow boost
   1970 composer (a] 2.1-se-596   (  596) [001] d..3   538.744800: sched_switch: prev_comm=composer (a] 2.1-se prev_pid=596 prev_prio=97 prev_state=D ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   1971 smem_native_rpm-87    (   87) [001] d..3   538.744836: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
   1972 Binder:1118_7-1846  ( 1118) [002] d..5   538.744858: sugov_set_iowait_boost: doing iow boost
   1973 Binder:1118_7-1846  ( 1118) [002] d..5   538.744868: sugov_set_iowait_boost: doing iow boost
   1974 Binder:1118_7-1846  ( 1118) [002] d..5   538.744881: sched_wakeup: comm=power (a] 1.1-servi pid=704 prio=120 target_cpu=002
   1975 Binder:1118_7-1846  ( 1118) [002] d..3   538.744943: sched_switch: prev_comm=Binder:1118_7 prev_pid=1846 prev_prio=120 prev_state=S ==> next_comm=power (a] 1.1-servi next_pid=704 next_prio=120
   1976 power (a] 1.1-servi-704   (  704) [002] d..4   538.745074: sched_wakeup: comm=Binder:1118_7 pid=1846 prio=120 target_cpu=002
   1977           <idle>-0     (-----) [005] ...2   538.745138: cpu_idle: state=4294967295 cpu_id=5
   1978 power (a] 1.1-servi-704   (  704) [002] d..3   538.745153: sched_switch: prev_comm=power (a] 1.1-servi prev_pid=704 prev_prio=120 prev_state=S ==> next_comm=Binder:1118_7 next_pid=1846 next_prio=120
   1979           <idle>-0     (-----) [005] d..2   538.745159: cpu_idle: state=2 cpu_id=5
   1980           <idle>-0     (-----) [000] dnh3   538.745297: sched_wakeup: comm=composer (a] 2.1-se pid=596 prio=97 target_cpu=000
   1981           <idle>-0     (-----) [000] .n.2   538.745315: cpu_idle: state=4294967295 cpu_id=0
   1982 Binder:1118_7-1846  ( 1118) [002] d..3   538.745327: sched_switch: prev_comm=Binder:1118_7 prev_pid=1846 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   1983           <idle>-0     (-----) [000] d..3   538.745332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=composer (a] 2.1-se next_pid=596 next_prio=97
   1984           <idle>-0     (-----) [002] d..2   538.745370: cpu_idle: state=2 cpu_id=2
   1985 composer (a] 2.1-se-596   (  596) [000] ...1   538.745383: clock_set_rate: mmss_mdss_mdp_clk state=150000000 cpu_id=0
   1986 composer (a] 2.1-se-596   (  596) [000] ...1   538.745393: clock_set_rate: mdp_clk_src state=150000000 cpu_id=0
   1987 composer (a] 2.1-se-596   (  596) [000] ...1   538.745925: clock_set_rate: mmss_mdss_vsync_clk state=19200000 cpu_id=0
   1988 composer (a] 2.1-se-596   (  596) [000] ...1   538.745937: clock_set_rate: vsync_clk_src state=19200000 cpu_id=0
   1989 composer (a] 2.1-se-596   (  596) [000] ...1   538.746024: clock_set_rate: mmss_mdss_mdp_clk state=150000000 cpu_id=0
   1990 composer (a] 2.1-se-596   (  596) [000] ...1   538.746031: clock_set_rate: mdp_clk_src state=150000000 cpu_id=0
   1991 composer (a] 2.1-se-596   (  596) [000] ...1   538.746124: tracing_mark_write: E
   1992 composer (a] 2.1-se-596   (  596) [000] d..4   538.746210: sugov_set_iowait_boost: doing iow boost
   1993 composer (a] 2.1-se-596   (  596) [000] d..4   538.746220: sugov_set_iowait_boost: doing iow boost
   1994 composer (a] 2.1-se-596   (  596) [000] d..4   538.746231: sched_wakeup: comm=EventControl pid=654 prio=112 target_cpu=000
   1995 composer (a] 2.1-se-596   (  596) [000] d..3   538.746302: sugov_set_iowait_boost: doing iow boost
   1996 composer (a] 2.1-se-596   (  596) [000] d..3   538.746323: sugov_set_iowait_boost: doing iow boost
   1997 composer (a] 2.1-se-596   (  596) [000] d..3   538.746334: sched_switch: prev_comm=composer (a] 2.1-se prev_pid=596 prev_prio=97 prev_state=S ==> next_comm=EventControl next_pid=654 next_prio=112
   1998 EventControl-654   (  594) [000] ...1   538.746425: tracing_mark_write: C|594|HW_VSYNC_ON_0|1
   1999 EventControl-654   (  594) [000] ...1   538.746437: tracing_mark_write: E
   2000 EventControl-654   (  594) [000] ...1   538.746446: tracing_mark_write: E
   2001 EventControl-654   (  594) [000] d..3   538.746501: sched_switch: prev_comm=EventControl prev_pid=654 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2002           <idle>-0     (-----) [000] d..2   538.746534: cpu_idle: state=0 cpu_id=0
   2003 system-105 ( 105) [001] d.h2   538.746608: sugov_set_iowait_boost: doing iow boost
   2004           <idle>-0     (-----) [000] dns4   538.746709: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   2005           <idle>-0     (-----) [000] .n.2   538.746742: cpu_idle: state=4294967295 cpu_id=0
   2006           <idle>-0     (-----) [000] d..3   538.746761: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   2007 rcu_preempt-7     (    7) [000] d..5   538.746812: sched_wakeup: comm=rcuop/4 pid=44 prio=120 target_cpu=001
   2008 system-105 ( 105) [001] d..3   538.746828: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/4 next_pid=44 next_prio=120
   2009 rcu_preempt-7     (    7) [000] d..3   538.746863: 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
   2010 rcuop/4-44    (   44) [001] d..3   538.746891: sched_switch: prev_comm=rcuop/4 prev_pid=44 prev_prio=120 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
   2011           <idle>-0     (-----) [000] d..2   538.746905: cpu_idle: state=2 cpu_id=0
   2012           <idle>-0     (-----) [000] dnh8   538.747392: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   2013           <idle>-0     (-----) [000] .n.2   538.747428: cpu_idle: state=4294967295 cpu_id=0
   2014           <idle>-0     (-----) [000] d..3   538.747458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   2015 kworker/0:5-1633 ( 1633) [000] d..5   538.747544: sched_wakeup: comm=SDM_EventThread pid=611 prio=111 target_cpu=002
   2016 kworker/0:5-1633 ( 1633) [000] d..3   538.747607: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2017           <idle>-0     (-----) [000] d..2   538.747652: cpu_idle: state=0 cpu_id=0
   2018           <idle>-0     (-----) [002] .n.2   538.747736: cpu_idle: state=4294967295 cpu_id=2
   2019           <idle>-0     (-----) [002] d..3   538.747775: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=611 next_prio=111
   2020 SDM_EventThread-611   (  596) [002] d..5   538.748081: sched_wakeup: comm=HwBinder:594_1 pid=612 prio=120 target_cpu=000
   2021           <idle>-0     (-----) [000] .n.2   538.748086: cpu_idle: state=4294967295 cpu_id=0
   2022           <idle>-0     (-----) [000] d..3   538.748109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:594_1 next_pid=612 next_prio=120
   2023 SDM_EventThread-611   (  596) [002] d..3   538.748159: sugov_set_iowait_boost: doing iow boost
   2024 SDM_EventThread-611   (  596) [002] d..3   538.748206: sched_switch: prev_comm=SDM_EventThread prev_pid=611 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   2025 HwBinder:594_1-612   (  594) [000] ...1   538.748220: tracing_mark_write: C|594|HW_VSYNC_0|1
   2026           <idle>-0     (-----) [002] d..2   538.748246: cpu_idle: state=2 cpu_id=2
   2027 HwBinder:594_1-612   (  594) [000] d..3   538.748268: sched_wakeup: comm=DispSync pid=615 prio=97 target_cpu=002
   2028 HwBinder:594_1-612   (  594) [000] d..3   538.748373: sched_switch: prev_comm=HwBinder:594_1 prev_pid=612 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2029           <idle>-0     (-----) [000] d..2   538.748410: cpu_idle: state=0 cpu_id=0
   2030           <idle>-0     (-----) [002] .n.2   538.748554: cpu_idle: state=4294967295 cpu_id=2
   2031           <idle>-0     (-----) [000] ...2   538.748581: cpu_idle: state=4294967295 cpu_id=0
   2032           <idle>-0     (-----) [002] d..3   538.748584: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=615 next_prio=97
   2033           <idle>-0     (-----) [000] d..2   538.748597: cpu_idle: state=2 cpu_id=0
   2034 DispSync-615   (  594) [002] ...1   538.748650: tracing_mark_write: C|594|VSYNC-app|1
   2035 DispSync-615   (  594) [002] d..3   538.748692: sched_wakeup: comm=EventThread pid=627 prio=97 target_cpu=000
   2036 DispSync-615   (  594) [002] d..3   538.748724: sugov_set_iowait_boost: doing iow boost
   2037 DispSync-615   (  594) [002] d..3   538.748745: sugov_set_iowait_boost: doing iow boost
   2038 DispSync-615   (  594) [002] d..3   538.748775: sugov_set_iowait_boost: doing iow boost
   2039 DispSync-615   (  594) [002] d..3   538.748786: sched_switch: prev_comm=DispSync prev_pid=615 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   2040           <idle>-0     (-----) [002] d..2   538.748832: cpu_idle: state=0 cpu_id=2
   2041           <idle>-0     (-----) [000] .n.2   538.748906: cpu_idle: state=4294967295 cpu_id=0
   2042           <idle>-0     (-----) [000] d..3   538.748939: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=EventThread next_pid=627 next_prio=97
   2043           <idle>-0     (-----) [002] ...2   538.749241: cpu_idle: state=4294967295 cpu_id=2
   2044           <idle>-0     (-----) [002] d..2   538.749260: cpu_idle: state=0 cpu_id=2
   2045 EventThread-627 ( 594) [000] d..3   538.749410: sugov_set_iowait_boost: doing iow boost
   2046 EventThread-627 ( 594) [000] d..3   538.749435: sugov_set_iowait_boost: doing iow boost
   2047 EventThread-627 ( 594) [000] d..3   538.749467: sugov_set_iowait_boost: doing iow boost
   2048 EventThread-627 ( 594) [000] d..3   538.749478: sched_switch: prev_comm=EventThread prev_pid=627 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2049           <idle>-0     (-----) [000] d..2   538.749522: cpu_idle: state=2 cpu_id=0
   2050           <idle>-0     (-----) [002] ...2   538.749665: cpu_idle: state=4294967295 cpu_id=2
   2051           <idle>-0     (-----) [002] d..2   538.749676: cpu_idle: state=2 cpu_id=2
   2052 system-105 ( 105) [001] d.h2   538.749936: sugov_set_iowait_boost: doing iow boost
   2053           <idle>-0     (-----) [004] d.h3   538.750190: sugov_set_iowait_boost: skipping iow boost
   2054           <idle>-0     (-----) [004] d.h3   538.750206: sugov_set_iowait_boost: skipping iow boost
   2055           <idle>-0     (-----) [004] dnh3   538.750219: sched_wakeup: comm=android.youtube pid=7459 prio=110 target_cpu=004
   2056           <idle>-0     (-----) [004] dnh5   538.750252: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   2057           <idle>-0     (-----) [004] .n.2   538.750263: cpu_idle: state=4294967295 cpu_id=4
   2058           <idle>-0     (-----) [004] d..3   538.750294: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   2059 sugov:4-5860  ( 5860) [004] ...1   538.750325: cpu_frequency: state=422400 cpu_id=4
   2060 sugov:4-5860  ( 5860) [004] ...1   538.750336: cpu_frequency: state=422400 cpu_id=5
   2061 sugov:4-5860  ( 5860) [004] ...1   538.750342: cpu_frequency: state=422400 cpu_id=6
   2062 sugov:4-5860  ( 5860) [004] ...1   538.750347: cpu_frequency: state=422400 cpu_id=7
   2063 sugov:4-5860  ( 5860) [004] d..3   538.750357: sugov_set_iowait_boost: skipping iow boost
   2064 sugov:4-5860  ( 5860) [004] d..3   538.750374: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=android.youtube next_pid=7459 next_prio=110
   2065 android.youtube-7459 ( 7459) [004] ...1   538.750639: tracing_mark_write: B|7459|Choreographer#doFrame
   2066 android.youtube-7459 ( 7459) [004] ...1   538.750684: tracing_mark_write: B|7459|input
   2067           <idle>-0     (-----) [002] ...2   538.750706: cpu_idle: state=4294967295 cpu_id=2
   2068 android.youtube-7459 ( 7459) [004] ...1   538.750727: tracing_mark_write: E
   2069           <idle>-0     (-----) [002] d..2   538.750732: cpu_idle: state=0 cpu_id=2
   2070 android.youtube-7459 ( 7459) [004] ...1   538.750752: tracing_mark_write: B|7459|traversal
   2071 android.youtube-7459 ( 7459) [004] ...1   538.750845: tracing_mark_write: B|7459|measure
   2072 android.youtube-7459 ( 7459) [004] d..3   538.751427: sched_wakeup: comm=Jit thread pool pid=7464 prio=129 target_cpu=005
   2073           <idle>-0     (-----) [002] ...2   538.751577: cpu_idle: state=4294967295 cpu_id=2
   2074           <idle>-0     (-----) [002] d..2   538.751590: cpu_idle: state=2 cpu_id=2
   2075           <idle>-0     (-----) [005] .n.2   538.751592: cpu_idle: state=4294967295 cpu_id=5
   2076           <idle>-0     (-----) [005] d..3   538.751621: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=7464 next_prio=129
   2077 Jit thread pool-7464  (-----) [005] d..3   538.751697: sugov_set_iowait_boost: skipping iow boost
   2078 Jit thread pool-7464  (-----) [005] d..3   538.751731: sched_switch: prev_comm=Jit thread pool prev_pid=7464 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   2079           <idle>-0     (-----) [005] d..2   538.751762: cpu_idle: state=2 cpu_id=5
   2080 android.youtube-7459 ( 7459) [004] ...1   538.752401: tracing_mark_write: E
   2081 android.youtube-7459 ( 7459) [004] ...1   538.752443: tracing_mark_write: B|7459|layout
   2082 android.youtube-7459 ( 7459) [004] d..3   538.752792: sched_wakeup: comm=Jit thread pool pid=7464 prio=129 target_cpu=005
   2083           <idle>-0     (-----) [005] .n.2   538.752953: cpu_idle: state=4294967295 cpu_id=5
   2084           <idle>-0     (-----) [005] d..3   538.752976: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=7464 next_prio=129
   2085 android.youtube-7459 ( 7459) [004] ...1   538.752977: tracing_mark_write: E
   2086 Jit thread pool-7464  (-----) [005] d..3   538.753044: sched_switch: prev_comm=Jit thread pool prev_pid=7464 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   2087           <idle>-0     (-----) [005] d..2   538.753070: cpu_idle: state=0 cpu_id=5
   2088 system-105 ( 105) [001] d.h2   538.753265: sugov_set_iowait_boost: doing iow boost
   2089 android.youtube-7459 ( 7459) [004] d.h2   538.753272: sugov_set_iowait_boost: skipping iow boost
   2090 android.youtube-7459 ( 7459) [004] dnH4   538.753315: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   2091 android.youtube-7459 ( 7459) [004] d..3   538.753343: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   2092 sugov:4-5860  ( 5860) [004] ...1   538.753362: cpu_frequency: state=422400 cpu_id=4
   2093 sugov:4-5860  ( 5860) [004] ...1   538.753371: cpu_frequency: state=422400 cpu_id=5
   2094 sugov:4-5860  ( 5860) [004] ...1   538.753378: cpu_frequency: state=422400 cpu_id=6
   2095 sugov:4-5860  ( 5860) [004] ...1   538.753383: cpu_frequency: state=422400 cpu_id=7
   2096 system-105 ( 105) [001] d.h4   538.753391: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   2097 sugov:4-5860  ( 5860) [004] d..3   538.753392: sugov_set_iowait_boost: skipping iow boost
   2098 sugov:4-5860  ( 5860) [004] d..3   538.753405: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=android.youtube next_pid=7459 next_prio=110
   2099           <idle>-0     (-----) [000] dns4   538.753543: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   2100           <idle>-0     (-----) [000] .n.2   538.753569: cpu_idle: state=4294967295 cpu_id=0
   2101 android.youtube-7459 ( 7459) [004] ...1   538.753591: tracing_mark_write: B|7459|draw
   2102           <idle>-0     (-----) [000] d..3   538.753597: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   2103 rcu_preempt-7     (    7) [000] d..3   538.753634: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   2104 android.youtube-7459 ( 7459) [004] ...1   538.753642: tracing_mark_write: B|7459|Record View#draw()
   2105 kworker/u16:12-1014 ( 1014) [000] d..5   538.753670: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   2106 kworker/u16:12-1014 ( 1014) [000] d..3   538.753693: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   2107           <idle>-0     (-----) [005] ...2   538.753733: cpu_idle: state=4294967295 cpu_id=5
   2108           <idle>-0     (-----) [005] d..2   538.753742: cpu_idle: state=2 cpu_id=5
   2109 kworker/0:5-1633 ( 1633) [000] d..3   538.753749: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2110           <idle>-0     (-----) [000] d..2   538.753791: cpu_idle: state=2 cpu_id=0
   2111 android.youtube-7459 ( 7459) [004] d..3   538.753881: sched_wakeup: comm=Jit thread pool pid=7464 prio=129 target_cpu=005
   2112           <idle>-0     (-----) [005] .n.2   538.754038: cpu_idle: state=4294967295 cpu_id=5
   2113           <idle>-0     (-----) [005] d..3   538.754063: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=7464 next_prio=129
   2114 Jit thread pool-7464  (-----) [005] d..3   538.754134: sched_switch: prev_comm=Jit thread pool prev_pid=7464 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   2115           <idle>-0     (-----) [005] d..2   538.754157: cpu_idle: state=2 cpu_id=5
   2116 android.youtube-7459 ( 7459) [004] ...1   538.754436: tracing_mark_write: E
   2117 android.youtube-7459 ( 7459) [004] d..5   538.754491: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=005
   2118 android.youtube-7459 ( 7459) [004] d..3   538.754512: sugov_set_iowait_boost: skipping iow boost
   2119 android.youtube-7459 ( 7459) [004] d..3   538.754539: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2120           <idle>-0     (-----) [004] dnh6   538.754557: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   2121           <idle>-0     (-----) [004] d..3   538.754567: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   2122 sugov:4-5860  ( 5860) [004] ...1   538.754585: cpu_frequency: state=422400 cpu_id=4
   2123 sugov:4-5860  ( 5860) [004] ...1   538.754593: cpu_frequency: state=422400 cpu_id=5
   2124 sugov:4-5860  ( 5860) [004] ...1   538.754599: cpu_frequency: state=422400 cpu_id=6
   2125 sugov:4-5860  ( 5860) [004] ...1   538.754604: cpu_frequency: state=422400 cpu_id=7
   2126 sugov:4-5860  ( 5860) [004] d..3   538.754613: sugov_set_iowait_boost: skipping iow boost
   2127 sugov:4-5860  ( 5860) [004] d..3   538.754631: sugov_set_iowait_boost: skipping iow boost
   2128 sugov:4-5860  ( 5860) [004] d..3   538.754635: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2129           <idle>-0     (-----) [005] .n.2   538.754654: cpu_idle: state=4294967295 cpu_id=5
   2130           <idle>-0     (-----) [004] d..2   538.754661: cpu_idle: state=2 cpu_id=4
   2131           <idle>-0     (-----) [005] d..3   538.754678: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2132 RenderThread-7591 ( 7459) [005] ...1   538.754731: tracing_mark_write: B|7459|DrawFrame
   2133 RenderThread-7591 ( 7459) [005] ...1   538.754744: tracing_mark_write: B|7459|syncFrameState
   2134 RenderThread-7591 ( 7459) [005] ...1   538.754779: tracing_mark_write: B|7459|prepareTree
   2135 RenderThread-7591 ( 7459) [005] d..3   538.756344: sched_wakeup: comm=hwuiTask1 pid=7601 prio=118 target_cpu=004
   2136 RenderThread-7591 ( 7459) [005] ...1   538.756434: tracing_mark_write: E
   2137 RenderThread-7591 ( 7459) [005] ...1   538.756446: tracing_mark_write: E
   2138 RenderThread-7591 ( 7459) [005] d..3   538.756469: sched_wakeup: comm=android.youtube pid=7459 prio=110 target_cpu=006
   2139           <idle>-0     (-----) [004] .n.2   538.756503: cpu_idle: state=4294967295 cpu_id=4
   2140           <idle>-0     (-----) [004] dn.3   538.756526: sugov_set_iowait_boost: skipping iow boost
   2141           <idle>-0     (-----) [004] d..3   538.756535: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=7601 next_prio=118
   2142 RenderThread-7591 ( 7459) [005] ...1   538.756540: tracing_mark_write: B|7459|query
   2143 RenderThread-7591 ( 7459) [005] ...1   538.756551: tracing_mark_write: E
   2144 RenderThread-7591 ( 7459) [005] ...1   538.756567: tracing_mark_write: B|7459|query
   2145 RenderThread-7591 ( 7459) [005] d.h2   538.756590: sugov_set_iowait_boost: skipping iow boost
   2146 system-105 ( 105) [001] d.h2   538.756598: sugov_set_iowait_boost: doing iow boost
   2147           <idle>-0     (-----) [006] .n.2   538.756631: cpu_idle: state=4294967295 cpu_id=6
   2148 hwuiTask1-7601 ( 7459) [004] ...1   538.756645: tracing_mark_write: B|7459|Update SurfaceView position
   2149 RenderThread-7591 ( 7459) [005] ...1   538.756652: tracing_mark_write: E
   2150           <idle>-0     (-----) [006] d..3   538.756661: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.youtube next_pid=7459 next_prio=110
   2151 hwuiTask1-7601 ( 7459) [004] ...1   538.756676: tracing_mark_write: E
   2152 RenderThread-7591 ( 7459) [005] ...1   538.756681: tracing_mark_write: B|7459|query
   2153 android.youtube-7459 ( 7459) [006] ...1   538.756692: tracing_mark_write: E
   2154 RenderThread-7591 ( 7459) [005] ...1   538.756699: tracing_mark_write: E
   2155 android.youtube-7459 ( 7459) [006] ...1   538.756705: tracing_mark_write: E
   2156 RenderThread-7591 ( 7459) [005] ...1   538.756710: tracing_mark_write: B|7459|query
   2157 RenderThread-7591 ( 7459) [005] ...1   538.756715: tracing_mark_write: E
   2158 RenderThread-7591 ( 7459) [005] ...1   538.756722: tracing_mark_write: B|7459|query
   2159 hwuiTask1-7601 ( 7459) [004] d..3   538.756724: sched_switch: prev_comm=hwuiTask1 prev_pid=7601 prev_prio=118 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2160 android.youtube-7459 ( 7459) [006] ...1   538.756729: tracing_mark_write: E
   2161 RenderThread-7591 ( 7459) [005] ...1   538.756734: tracing_mark_write: E
   2162 RenderThread-7591 ( 7459) [005] ...1   538.756741: tracing_mark_write: B|7459|query
   2163 RenderThread-7591 ( 7459) [005] ...1   538.756746: tracing_mark_write: E
   2164           <idle>-0     (-----) [004] d..2   538.756748: cpu_idle: state=2 cpu_id=4
   2165 RenderThread-7591 ( 7459) [005] ...1   538.756756: tracing_mark_write: B|7459|setBuffersDimensions
   2166 RenderThread-7591 ( 7459) [005] ...1   538.756761: tracing_mark_write: E
   2167 RenderThread-7591 ( 7459) [005] ...1   538.756771: tracing_mark_write: B|7459|dequeueBuffer
   2168           <idle>-0     (-----) [000] d.h3   538.756832: sugov_set_iowait_boost: doing iow boost
   2169 android.youtube-7459 ( 7459) [006] d..3   538.756835: sched_switch: prev_comm=android.youtube prev_pid=7459 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
   2170           <idle>-0     (-----) [000] dnh3   538.756850: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   2171           <idle>-0     (-----) [006] d..2   538.756861: cpu_idle: state=2 cpu_id=6
   2172           <idle>-0     (-----) [000] .n.2   538.756868: cpu_idle: state=4294967295 cpu_id=0
   2173 RenderThread-7591 ( 7459) [005] d..5   538.756873: sugov_set_iowait_boost: skipping iow boost
   2174 RenderThread-7591 ( 7459) [005] d..5   538.756878: sugov_set_iowait_boost: skipping iow boost
   2175 RenderThread-7591 ( 7459) [005] d..5   538.756886: sched_wakeup: comm=Binder:594_5 pid=2074 prio=110 target_cpu=005
   2176           <idle>-0     (-----) [000] dn.3   538.756897: sugov_set_iowait_boost: doing iow boost
   2177           <idle>-0     (-----) [000] d..3   538.756909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   2178 RenderThread-7591 ( 7459) [005] d..3   538.756926: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=S ==> next_comm=Binder:594_5 next_pid=2074 next_prio=110
   2179 rcu_preempt-7     (    7) [000] d..5   538.756978: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   2180 rcu_preempt-7     (    7) [000] d..3   538.757002: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   2181 Binder:594_5-2074 ( 594) [005] ...1   538.757005: tracing_mark_write: B|594|dequeueBuffer
   2182 Binder:594_5-2074 ( 594) [005] ...1   538.757019: tracing_mark_write: B|594|waitWhileAllocatingLocked
   2183 Binder:594_5-2074 ( 594) [005] ...1   538.757023: tracing_mark_write: E
   2184 Binder:594_5-2074 ( 594) [005] ...1   538.757050: tracing_mark_write: B|594|com.google.android.youtube/com.google.android.apps.youtube.app.WatchWhileActivity#0: 0
   2185 Binder:594_5-2074 ( 594) [005] ...1   538.757054: tracing_mark_write: E
   2186 rcuop/0-10    (   10) [000] d..3   538.757058: 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
   2187 Binder:594_5-2074 ( 594) [005] ...1   538.757061: tracing_mark_write: E
   2188           <idle>-0     (-----) [000] d..2   538.757109: cpu_idle: state=2 cpu_id=0
   2189 Binder:594_5-2074 ( 594) [005] dn.4   538.757142: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=005
   2190 Binder:594_5-2074 ( 594) [005] d..3   538.757152: sched_switch: prev_comm=Binder:594_5 prev_pid=2074 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2191 RenderThread-7591 ( 7459) [005] ...1   538.757209: tracing_mark_write: E
   2192 RenderThread-7591 ( 7459) [005] ...1   538.757231: tracing_mark_write: B|7459|query
   2193 RenderThread-7591 ( 7459) [005] dn.5   538.757286: sched_wakeup: comm=Binder:594_3 pid=827 prio=110 target_cpu=005
   2194 RenderThread-7591 ( 7459) [005] d..3   538.757298: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=R+ ==> next_comm=Binder:594_3 next_pid=827 next_prio=110
   2195 system-105 ( 105) [001] d..3   538.757301: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2196 Binder:594_3-827 ( 594) [005] ...1   538.757344: tracing_mark_write: B|594|query
   2197 Binder:594_3-827 ( 594) [005] ...1   538.757352: tracing_mark_write: E
   2198           <idle>-0     (-----) [001] d..2   538.757352: cpu_idle: state=2 cpu_id=1
   2199 Binder:594_3-827 ( 594) [005] d..3   538.757420: sched_switch: prev_comm=Binder:594_3 prev_pid=827 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2200 RenderThread-7591 ( 7459) [005] ...1   538.757452: tracing_mark_write: E
   2201 RenderThread-7591 ( 7459) [005] ...1   538.757471: tracing_mark_write: B|7459|eglBeginFrame
   2202 RenderThread-7591 ( 7459) [005] ...1   538.757483: tracing_mark_write: E
   2203 RenderThread-7591 ( 7459) [005] ...1   538.757505: tracing_mark_write: B|7459|query
   2204 RenderThread-7591 ( 7459) [005] ...1   538.757510: tracing_mark_write: E
   2205 RenderThread-7591 ( 7459) [005] ...1   538.757518: tracing_mark_write: B|7459|query
   2206 RenderThread-7591 ( 7459) [005] ...1   538.757523: tracing_mark_write: E
   2207 RenderThread-7591 ( 7459) [005] ...1   538.757555: tracing_mark_write: B|7459|computeOrdering
   2208 RenderThread-7591 ( 7459) [005] ...1   538.757587: tracing_mark_write: E
   2209 RenderThread-7591 ( 7459) [005] ...1   538.758040: tracing_mark_write: B|7459|flush drawing commands
   2210 RenderThread-7591 ( 7459) [005] ...1   538.758616: tracing_mark_write: E
   2211 RenderThread-7591 ( 7459) [005] ...1   538.758666: tracing_mark_write: B|7459|waitOnFences
   2212 RenderThread-7591 ( 7459) [005] ...1   538.758683: tracing_mark_write: E
   2213 RenderThread-7591 ( 7459) [005] ...1   538.758704: tracing_mark_write: B|7459|eglSwapBuffersWithDamageKHR
   2214 RenderThread-7591 ( 7459) [005] ...1   538.758729: tracing_mark_write: B|7459|setSurfaceDamage
   2215 RenderThread-7591 ( 7459) [005] ...1   538.758755: tracing_mark_write: E
   2216           <idle>-0     (-----) [004] ...2   538.759429: cpu_idle: state=4294967295 cpu_id=4
   2217           <idle>-0     (-----) [004] d..2   538.759444: cpu_idle: state=0 cpu_id=4
   2218           <idle>-0     (-----) [006] ...2   538.759484: cpu_idle: state=4294967295 cpu_id=6
   2219           <idle>-0     (-----) [006] d..2   538.759500: cpu_idle: state=0 cpu_id=6
   2220           <idle>-0     (-----) [007] ...2   538.759540: cpu_idle: state=4294967295 cpu_id=7
   2221           <idle>-0     (-----) [007] d..2   538.759556: cpu_idle: state=0 cpu_id=7
   2222 RenderThread-7591 ( 7459) [005] d.h3   538.759935: sugov_set_iowait_boost: skipping iow boost
   2223 RenderThread-7591 ( 7459) [005] d.H5   538.759976: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   2224           <idle>-0     (-----) [004] .n.2   538.759979: cpu_idle: state=4294967295 cpu_id=4
   2225           <idle>-0     (-----) [004] d..3   538.759997: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   2226 sugov:4-5860  ( 5860) [004] ...1   538.760017: cpu_frequency: state=422400 cpu_id=4
   2227 sugov:4-5860  ( 5860) [004] ...1   538.760026: cpu_frequency: state=422400 cpu_id=5
   2228 sugov:4-5860  ( 5860) [004] ...1   538.760032: cpu_frequency: state=422400 cpu_id=6
   2229 sugov:4-5860  ( 5860) [004] ...1   538.760038: cpu_frequency: state=422400 cpu_id=7
   2230 sugov:4-5860  ( 5860) [004] d..3   538.760048: sugov_set_iowait_boost: skipping iow boost
   2231 sugov:4-5860  ( 5860) [004] d..3   538.760059: sugov_set_iowait_boost: skipping iow boost
   2232 sugov:4-5860  ( 5860) [004] d..3   538.760076: sugov_set_iowait_boost: skipping iow boost
   2233 sugov:4-5860  ( 5860) [004] d..3   538.760081: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2234           <idle>-0     (-----) [004] d..2   538.760101: cpu_idle: state=0 cpu_id=4
   2235           <idle>-0     (-----) [001] ...2   538.760125: cpu_idle: state=4294967295 cpu_id=1
   2236           <idle>-0     (-----) [001] d..2   538.760162: cpu_idle: state=0 cpu_id=1
   2237           <idle>-0     (-----) [000] ...2   538.760174: cpu_idle: state=4294967295 cpu_id=0
   2238           <idle>-0     (-----) [000] d..2   538.760200: cpu_idle: state=0 cpu_id=0
   2239           <idle>-0     (-----) [002] ...2   538.760206: cpu_idle: state=4294967295 cpu_id=2
   2240           <idle>-0     (-----) [002] d..2   538.760232: cpu_idle: state=0 cpu_id=2
   2241           <idle>-0     (-----) [003] ...2   538.760243: cpu_idle: state=4294967295 cpu_id=3
   2242           <idle>-0     (-----) [003] d..2   538.760269: cpu_idle: state=0 cpu_id=3
   2243 RenderThread-7591 ( 7459) [005] d..3   538.760317: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=D ==> next_comm=Binder:594_5 next_pid=2074 next_prio=110
   2244 Binder:594_5-2074 ( 594) [005] d..3   538.760421: sched_switch: prev_comm=Binder:594_5 prev_pid=2074 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   2245           <idle>-0     (-----) [005] d..2   538.760452: cpu_idle: state=0 cpu_id=5
   2246           <idle>-0     (-----) [005] d.h4   538.760923: sched_blocked_reason: pid=7591 iowait=0 caller=_regulator_enable_delay+0x4c/0x64
   2247           <idle>-0     (-----) [005] d.h4   538.760931: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=004
   2248           <idle>-0     (-----) [004] .n.2   538.760934: cpu_idle: state=4294967295 cpu_id=4
   2249           <idle>-0     (-----) [005] ...2   538.760943: cpu_idle: state=4294967295 cpu_id=5
   2250           <idle>-0     (-----) [004] d..3   538.760947: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2251           <idle>-0     (-----) [005] d..2   538.760954: cpu_idle: state=0 cpu_id=5
   2252           <idle>-0     (-----) [001] d.h3   538.761130: sugov_set_iowait_boost: doing iow boost
   2253 RenderThread-7591 ( 7459) [004] d..3   538.761134: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2254           <idle>-0     (-----) [001] dnh3   538.761155: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2255           <idle>-0     (-----) [004] d..2   538.761156: cpu_idle: state=0 cpu_id=4
   2256           <idle>-0     (-----) [001] .n.2   538.761172: cpu_idle: state=4294967295 cpu_id=1
   2257           <idle>-0     (-----) [005] d.s8   538.761198: sched_blocked_reason: pid=7591 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2258           <idle>-0     (-----) [005] d.s8   538.761205: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=004
   2259           <idle>-0     (-----) [004] .n.2   538.761209: cpu_idle: state=4294967295 cpu_id=4
   2260           <idle>-0     (-----) [001] d..3   538.761211: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2261           <idle>-0     (-----) [004] d..3   538.761221: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2262           <idle>-0     (-----) [005] ...2   538.761238: cpu_idle: state=4294967295 cpu_id=5
   2263           <idle>-0     (-----) [005] d..2   538.761245: cpu_idle: state=0 cpu_id=5
   2264 smem_native_rpm-87    (   87) [001] d..3   538.761310: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2265 RenderThread-7591 ( 7459) [004] d..3   538.761333: sugov_set_iowait_boost: skipping iow boost
   2266           <idle>-0     (-----) [001] dnh4   538.761340: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2267 RenderThread-7591 ( 7459) [004] d..3   538.761350: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2268           <idle>-0     (-----) [001] d..3   538.761365: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2269           <idle>-0     (-----) [005] d.s8   538.761368: sched_blocked_reason: pid=7591 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2270           <idle>-0     (-----) [004] d..2   538.761369: cpu_idle: state=0 cpu_id=4
   2271           <idle>-0     (-----) [005] d.s8   538.761375: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=004
   2272           <idle>-0     (-----) [004] .n.2   538.761378: cpu_idle: state=4294967295 cpu_id=4
   2273           <idle>-0     (-----) [004] d..3   538.761389: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2274           <idle>-0     (-----) [005] ...2   538.761398: cpu_idle: state=4294967295 cpu_id=5
   2275           <idle>-0     (-----) [005] d..2   538.761403: cpu_idle: state=0 cpu_id=5
   2276 smem_native_rpm-87    (   87) [001] d..3   538.761436: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2277           <idle>-0     (-----) [001] d..2   538.761478: cpu_idle: state=0 cpu_id=1
   2278           <idle>-0     (-----) [005] ...2   538.761615: cpu_idle: state=4294967295 cpu_id=5
   2279           <idle>-0     (-----) [005] d..2   538.761624: cpu_idle: state=0 cpu_id=5
   2280           <idle>-0     (-----) [001] dnh3   538.761663: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2281           <idle>-0     (-----) [001] .n.2   538.761676: cpu_idle: state=4294967295 cpu_id=1
   2282 RenderThread-7591 ( 7459) [004] ...1   538.761687: clock_set_rate: gpucc_gfx3d_clk state=257000000 cpu_id=4
   2283 RenderThread-7591 ( 7459) [004] ...1   538.761692: clock_set_rate: gfx3d_clk_src state=257000000 cpu_id=4
   2284 RenderThread-7591 ( 7459) [004] ...1   538.761695: clock_set_rate: gpu_pll0_pll_out_even state=514000000 cpu_id=4
   2285           <idle>-0     (-----) [001] d..3   538.761697: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2286 RenderThread-7591 ( 7459) [004] ...1   538.761700: clock_set_rate: gpu_pll0_pll state=514000195 cpu_id=4
   2287           <idle>-0     (-----) [005] ...2   538.761743: cpu_idle: state=4294967295 cpu_id=5
   2288           <idle>-0     (-----) [005] d..2   538.761752: cpu_idle: state=0 cpu_id=5
   2289 smem_native_rpm-87    (   87) [001] d..3   538.761754: sugov_set_iowait_boost: doing iow boost
   2290 smem_native_rpm-87    (   87) [001] d..3   538.761789: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2291           <idle>-0     (-----) [005] ...2   538.761805: cpu_idle: state=4294967295 cpu_id=5
   2292           <idle>-0     (-----) [005] d..2   538.761811: cpu_idle: state=0 cpu_id=5
   2293           <idle>-0     (-----) [001] d..2   538.761825: cpu_idle: state=0 cpu_id=1
   2294           <idle>-0     (-----) [001] dnh3   538.761889: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2295 RenderThread-7591 ( 7459) [004] d..3   538.761894: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2296           <idle>-0     (-----) [001] .n.2   538.761901: cpu_idle: state=4294967295 cpu_id=1
   2297           <idle>-0     (-----) [004] d..2   538.761915: cpu_idle: state=0 cpu_id=4
   2298           <idle>-0     (-----) [001] d..3   538.761923: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2299 smem_native_rpm-87    (   87) [001] d..3   538.761979: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2300           <idle>-0     (-----) [005] d.s8   538.761993: sched_blocked_reason: pid=7591 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2301           <idle>-0     (-----) [005] d.s8   538.761999: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=004
   2302           <idle>-0     (-----) [004] .n.2   538.762003: cpu_idle: state=4294967295 cpu_id=4
   2303           <idle>-0     (-----) [004] d..3   538.762015: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2304           <idle>-0     (-----) [001] d..2   538.762015: cpu_idle: state=0 cpu_id=1
   2305           <idle>-0     (-----) [005] ...2   538.762019: cpu_idle: state=4294967295 cpu_id=5
   2306           <idle>-0     (-----) [005] d..2   538.762028: cpu_idle: state=0 cpu_id=5
   2307           <idle>-0     (-----) [001] dnh3   538.762091: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2308 RenderThread-7591 ( 7459) [004] d..3   538.762094: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2309           <idle>-0     (-----) [001] .n.2   538.762106: cpu_idle: state=4294967295 cpu_id=1
   2310           <idle>-0     (-----) [004] d..2   538.762112: cpu_idle: state=0 cpu_id=4
   2311           <idle>-0     (-----) [001] d..3   538.762127: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2312           <idle>-0     (-----) [004] d.h3   538.762214: sched_blocked_reason: pid=7591 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2313           <idle>-0     (-----) [004] dnh3   538.762221: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=004
   2314           <idle>-0     (-----) [004] .n.2   538.762228: cpu_idle: state=4294967295 cpu_id=4
   2315           <idle>-0     (-----) [004] d..3   538.762238: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2316           <idle>-0     (-----) [005] ...2   538.762264: cpu_idle: state=4294967295 cpu_id=5
   2317           <idle>-0     (-----) [005] d..2   538.762272: cpu_idle: state=0 cpu_id=5
   2318 smem_native_rpm-87    (   87) [001] d..3   538.762288: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2319           <idle>-0     (-----) [001] d..2   538.762328: cpu_idle: state=0 cpu_id=1
   2320 RenderThread-7591 ( 7459) [004] d..3   538.762475: sugov_set_iowait_boost: skipping iow boost
   2321           <idle>-0     (-----) [001] dnh3   538.762483: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2322           <idle>-0     (-----) [005] ...2   538.762492: cpu_idle: state=4294967295 cpu_id=5
   2323 RenderThread-7591 ( 7459) [004] d..3   538.762493: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2324           <idle>-0     (-----) [001] .n.2   538.762496: cpu_idle: state=4294967295 cpu_id=1
   2325           <idle>-0     (-----) [005] d..2   538.762497: cpu_idle: state=0 cpu_id=5
   2326           <idle>-0     (-----) [004] d..2   538.762515: cpu_idle: state=0 cpu_id=4
   2327           <idle>-0     (-----) [001] d..3   538.762519: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2328           <idle>-0     (-----) [005] d.s8   538.762552: sched_blocked_reason: pid=7591 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2329           <idle>-0     (-----) [005] d.s8   538.762559: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=004
   2330           <idle>-0     (-----) [004] .n.2   538.762563: cpu_idle: state=4294967295 cpu_id=4
   2331           <idle>-0     (-----) [004] d..3   538.762575: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2332           <idle>-0     (-----) [005] ...2   538.762580: cpu_idle: state=4294967295 cpu_id=5
   2333           <idle>-0     (-----) [005] d..2   538.762587: cpu_idle: state=0 cpu_id=5
   2334 smem_native_rpm-87    (   87) [001] d..3   538.762610: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2335           <idle>-0     (-----) [001] d..2   538.762653: cpu_idle: state=0 cpu_id=1
   2336           <idle>-0     (-----) [005] ...2   538.762816: cpu_idle: state=4294967295 cpu_id=5
   2337           <idle>-0     (-----) [005] d..2   538.762825: cpu_idle: state=0 cpu_id=5
   2338           <idle>-0     (-----) [001] ...2   538.762879: cpu_idle: state=4294967295 cpu_id=1
   2339           <idle>-0     (-----) [001] d..2   538.762897: cpu_idle: state=0 cpu_id=1
   2340           <idle>-0     (-----) [005] ...2   538.763080: cpu_idle: state=4294967295 cpu_id=5
   2341           <idle>-0     (-----) [005] d..2   538.763088: cpu_idle: state=0 cpu_id=5
   2342           <idle>-0     (-----) [001] ...2   538.763136: cpu_idle: state=4294967295 cpu_id=1
   2343           <idle>-0     (-----) [001] d..2   538.763153: cpu_idle: state=0 cpu_id=1
   2344           <idle>-0     (-----) [005] ...2   538.763388: cpu_idle: state=4294967295 cpu_id=5
   2345           <idle>-0     (-----) [005] d..2   538.763396: cpu_idle: state=0 cpu_id=5
   2346           <idle>-0     (-----) [001] ...2   538.763404: cpu_idle: state=4294967295 cpu_id=1
   2347           <idle>-0     (-----) [001] d..2   538.763416: cpu_idle: state=0 cpu_id=1
   2348           <idle>-0     (-----) [000] d.h3   538.763535: sugov_set_iowait_boost: doing iow boost
   2349           <idle>-0     (-----) [000] dnh3   538.763551: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   2350           <idle>-0     (-----) [005] ...2   538.763558: cpu_idle: state=4294967295 cpu_id=5
   2351           <idle>-0     (-----) [007] ...2   538.763560: cpu_idle: state=4294967295 cpu_id=7
   2352           <idle>-0     (-----) [006] ...2   538.763561: cpu_idle: state=4294967295 cpu_id=6
   2353           <idle>-0     (-----) [005] d..2   538.763563: cpu_idle: state=0 cpu_id=5
   2354           <idle>-0     (-----) [007] d..2   538.763565: cpu_idle: state=0 cpu_id=7
   2355           <idle>-0     (-----) [001] ...2   538.763566: cpu_idle: state=4294967295 cpu_id=1
   2356           <idle>-0     (-----) [006] d..2   538.763568: cpu_idle: state=0 cpu_id=6
   2357           <idle>-0     (-----) [003] ...2   538.763568: cpu_idle: state=4294967295 cpu_id=3
   2358           <idle>-0     (-----) [002] ...2   538.763569: cpu_idle: state=4294967295 cpu_id=2
   2359           <idle>-0     (-----) [000] .n.2   538.763572: cpu_idle: state=4294967295 cpu_id=0
   2360           <idle>-0     (-----) [002] d..2   538.763581: cpu_idle: state=0 cpu_id=2
   2361           <idle>-0     (-----) [003] d..2   538.763581: cpu_idle: state=0 cpu_id=3
   2362           <idle>-0     (-----) [001] d..2   538.763583: cpu_idle: state=0 cpu_id=1
   2363           <idle>-0     (-----) [000] d..3   538.763602: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   2364 kworker/u16:12-1014 ( 1014) [000] d..4   538.763717: sugov_set_iowait_boost: doing iow boost
   2365           <idle>-0     (-----) [005] ...2   538.763722: cpu_idle: state=4294967295 cpu_id=5
   2366           <idle>-0     (-----) [005] d..2   538.763730: cpu_idle: state=0 cpu_id=5
   2367 kworker/u16:12-1014 ( 1014) [000] d..4   538.763730: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2368           <idle>-0     (-----) [001] ...2   538.763890: cpu_idle: state=4294967295 cpu_id=1
   2369           <idle>-0     (-----) [001] d..2   538.763907: cpu_idle: state=0 cpu_id=1
   2370 kworker/u16:12-1014 ( 1014) [000] d..3   538.763908: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2371 kworker/u16:11-682   (  682) [000] d.h9   538.763971: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   2372 kworker/u16:11-682   (  682) [000] d..3   538.764015: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   2373           <idle>-0     (-----) [005] ...2   538.764048: cpu_idle: state=4294967295 cpu_id=5
   2374           <idle>-0     (-----) [005] d..2   538.764055: cpu_idle: state=0 cpu_id=5
   2375 RenderThread-7591 ( 7459) [004] ...1   538.764105: tracing_mark_write: B|7459|setBuffersTransform
   2376 RenderThread-7591 ( 7459) [004] ...1   538.764116: tracing_mark_write: E
   2377 kworker/0:5-1633 ( 1633) [000] d..5   538.764121: sched_wakeup: comm=SDM_EventThread pid=611 prio=111 target_cpu=002
   2378           <idle>-0     (-----) [002] .n.2   538.764128: cpu_idle: state=4294967295 cpu_id=2
   2379           <idle>-0     (-----) [002] d..3   538.764157: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=611 next_prio=111
   2380 kworker/0:5-1633 ( 1633) [000] d..3   538.764183: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2381 RenderThread-7591 ( 7459) [004] ...1   538.764193: tracing_mark_write: B|7459|queueBuffer
   2382           <idle>-0     (-----) [000] d..2   538.764226: cpu_idle: state=0 cpu_id=0
   2383           <idle>-0     (-----) [001] ...2   538.764257: cpu_idle: state=4294967295 cpu_id=1
   2384           <idle>-0     (-----) [001] d..2   538.764272: cpu_idle: state=0 cpu_id=1
   2385 RenderThread-7591 ( 7459) [004] d..5   538.764316: sugov_set_iowait_boost: skipping iow boost
   2386 RenderThread-7591 ( 7459) [004] d..5   538.764322: sugov_set_iowait_boost: skipping iow boost
   2387 RenderThread-7591 ( 7459) [004] d..5   538.764332: sched_wakeup: comm=Binder:594_5 pid=2074 prio=110 target_cpu=004
   2388 RenderThread-7591 ( 7459) [004] dnh6   538.764352: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   2389 RenderThread-7591 ( 7459) [004] d..3   538.764365: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   2390 SDM_EventThread-611   (  596) [002] d..5   538.764380: sched_wakeup: comm=HwBinder:594_1 pid=612 prio=120 target_cpu=000
   2391 sugov:4-5860  ( 5860) [004] ...1   538.764384: cpu_frequency: state=422400 cpu_id=4
   2392           <idle>-0     (-----) [000] .n.2   538.764386: cpu_idle: state=4294967295 cpu_id=0
   2393           <idle>-0     (-----) [005] ...2   538.764390: cpu_idle: state=4294967295 cpu_id=5
   2394 sugov:4-5860  ( 5860) [004] ...1   538.764393: cpu_frequency: state=422400 cpu_id=5
   2395           <idle>-0     (-----) [005] d..2   538.764397: cpu_idle: state=0 cpu_id=5
   2396 sugov:4-5860  ( 5860) [004] ...1   538.764399: cpu_frequency: state=422400 cpu_id=6
   2397 sugov:4-5860  ( 5860) [004] ...1   538.764405: cpu_frequency: state=422400 cpu_id=7
   2398           <idle>-0     (-----) [000] d..3   538.764411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:594_1 next_pid=612 next_prio=120
   2399 sugov:4-5860  ( 5860) [004] d..3   538.764413: sugov_set_iowait_boost: skipping iow boost
   2400 sugov:4-5860  ( 5860) [004] d..3   538.764425: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2401 RenderThread-7591 ( 7459) [004] d..3   538.764464: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=S ==> next_comm=Binder:594_5 next_pid=2074 next_prio=110
   2402 SDM_EventThread-611   (  596) [002] d..3   538.764469: sugov_set_iowait_boost: doing iow boost
   2403 SDM_EventThread-611   (  596) [002] d..3   538.764517: sched_switch: prev_comm=SDM_EventThread prev_pid=611 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   2404 Binder:594_5-2074 ( 594) [004] ...1   538.764550: tracing_mark_write: B|594|queueBuffer
   2405           <idle>-0     (-----) [002] d..2   538.764554: cpu_idle: state=0 cpu_id=2
   2406 HwBinder:594_1-612   (  594) [000] ...1   538.764569: tracing_mark_write: C|594|HW_VSYNC_0|0
   2407 Binder:594_5-2074 ( 594) [004] ...1   538.764581: tracing_mark_write: B|594|com.google.android.youtube/com.google.android.apps.youtube.app.WatchWhileActivity#0: 0
   2408 Binder:594_5-2074 ( 594) [004] ...1   538.764585: tracing_mark_write: E
   2409 Binder:594_5-2074 ( 594) [004] ...1   538.764609: tracing_mark_write: C|594|com.google.android.youtube/com.google.android.apps.youtube.app.WatchWhileActivity#0|1
   2410           <idle>-0     (-----) [001] ...2   538.764662: cpu_idle: state=4294967295 cpu_id=1
   2411           <idle>-0     (-----) [001] d..2   538.764678: cpu_idle: state=0 cpu_id=1
   2412 HwBinder:594_1-612   (  594) [000] d..3   538.764688: sched_switch: prev_comm=HwBinder:594_1 prev_pid=612 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2413 Binder:594_5-2074 ( 594) [004] ...1   538.764703: tracing_mark_write: B|594|waitForever
   2414           <idle>-0     (-----) [002] d.h4   538.764709: sched_wakeup: comm=DispSync pid=615 prio=97 target_cpu=001
   2415 Binder:594_5-2074 ( 594) [004] ...1   538.764725: tracing_mark_write: E
   2416           <idle>-0     (-----) [001] dnh3   538.764726: sched_wakeup: comm=EventThread pid=629 prio=97 target_cpu=001
   2417           <idle>-0     (-----) [000] d..2   538.764731: cpu_idle: state=0 cpu_id=0
   2418 Binder:594_5-2074 ( 594) [004] ...1   538.764735: tracing_mark_write: B|594|addAndGetFrameTimestamps
   2419           <idle>-0     (-----) [001] .n.2   538.764742: cpu_idle: state=4294967295 cpu_id=1
   2420           <idle>-0     (-----) [005] ...2   538.764749: cpu_idle: state=4294967295 cpu_id=5
   2421 Binder:594_5-2074 ( 594) [004] ...1   538.764754: tracing_mark_write: E
   2422           <idle>-0     (-----) [002] ...2   538.764755: cpu_idle: state=4294967295 cpu_id=2
   2423           <idle>-0     (-----) [005] d..2   538.764757: cpu_idle: state=0 cpu_id=5
   2424 Binder:594_5-2074 ( 594) [004] ...1   538.764760: tracing_mark_write: E
   2425           <idle>-0     (-----) [001] d..3   538.764764: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=615 next_prio=97
   2426           <idle>-0     (-----) [002] d..2   538.764772: cpu_idle: state=0 cpu_id=2
   2427 DispSync-615   (  594) [001] d..4   538.764789: sugov_set_iowait_boost: doing iow boost
   2428 Binder:594_5-2074 ( 594) [004] d..4   538.764810: sugov_set_iowait_boost: skipping iow boost
   2429 Binder:594_5-2074 ( 594) [004] dn.4   538.764820: sched_wakeup: comm=RenderThread pid=7591 prio=110 target_cpu=004
   2430           <idle>-0     (-----) [000] .n.2   538.764827: cpu_idle: state=4294967295 cpu_id=0
   2431 Binder:594_5-2074 ( 594) [004] d..3   538.764831: sched_switch: prev_comm=Binder:594_5 prev_pid=2074 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=7591 next_prio=110
   2432           <idle>-0     (-----) [000] d..3   538.764853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=EventThread next_pid=629 next_prio=97
   2433 DispSync-615   (  594) [001] ...1   538.764884: tracing_mark_write: C|594|VSYNC-app|0
   2434 RenderThread-7591 ( 7459) [004] ...1   538.764898: tracing_mark_write: E
   2435 DispSync-615   (  594) [001] d..3   538.764934: sched_wakeup: comm=EventThread pid=627 prio=97 target_cpu=002
   2436           <idle>-0     (-----) [002] .n.2   538.764934: cpu_idle: state=4294967295 cpu_id=2
   2437           <idle>-0     (-----) [002] d..3   538.764956: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=EventThread next_pid=627 next_prio=97
   2438 DispSync-615   (  594) [001] d.h3   538.764974: sugov_set_iowait_boost: doing iow boost
   2439 DispSync-615   (  594) [001] d.h3   538.764986: sched_wakeup: comm=rcuop/4 pid=44 prio=120 target_cpu=001
   2440 RenderThread-7591 ( 7459) [004] ...1   538.764988: tracing_mark_write: E
   2441 DispSync-615   (  594) [001] d..3   538.765000: sugov_set_iowait_boost: doing iow boost
   2442 EventThread-629   (  594) [000] d..5   538.765008: sched_wakeup: comm=Binder:1118_7 pid=1846 prio=120 target_cpu=003
   2443           <idle>-0     (-----) [003] .n.2   538.765012: cpu_idle: state=4294967295 cpu_id=3
   2444 RenderThread-7591 ( 7459) [004] ...1   538.765014: tracing_mark_write: B|7459|query
   2445 RenderThread-7591 ( 7459) [004] ...1   538.765021: tracing_mark_write: E
   2446 DispSync-615   (  594) [001] d..3   538.765023: sched_switch: prev_comm=DispSync prev_pid=615 prev_prio=97 prev_state=S ==> next_comm=rcuop/4 next_pid=44 next_prio=120
   2447 RenderThread-7591 ( 7459) [004] ...1   538.765030: tracing_mark_write: B|7459|query
   2448 RenderThread-7591 ( 7459) [004] ...1   538.765036: tracing_mark_write: E
   2449           <idle>-0     (-----) [003] d..3   538.765045: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:1118_7 next_pid=1846 next_prio=120
   2450 RenderThread-7591 ( 7459) [004] ...1   538.765053: tracing_mark_write: C|7459|hwui_Texture|25601320
   2451           <idle>-0     (-----) [005] dnh3   538.765065: sched_wakeup: comm=DispSync pid=615 prio=97 target_cpu=005
   2452 RenderThread-7591 ( 7459) [004] ...1   538.765066: tracing_mark_write: C|7459|hwui_Texture_count|37
   2453           <idle>-0     (-----) [005] .n.2   538.765071: cpu_idle: state=4294967295 cpu_id=5
   2454 RenderThread-7591 ( 7459) [004] ...1   538.765076: tracing_mark_write: C|7459|hwui_OffscreenBuffer|0
   2455           <idle>-0     (-----) [005] d..3   538.765082: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=615 next_prio=97
   2456 EventThread-629   (  594) [000] d..3   538.765082: sugov_set_iowait_boost: doing iow boost
   2457 RenderThread-7591 ( 7459) [004] ...1   538.765087: tracing_mark_write: C|7459|hwui_OffscreenBuffer_count|2
   2458 EventThread-627 ( 594) [002] d..3   538.765091: sugov_set_iowait_boost: doing iow boost
   2459 RenderThread-7591 ( 7459) [004] ...1   538.765098: tracing_mark_write: C|7459|hwui_Layer|0
   2460 RenderThread-7591 ( 7459) [004] ...1   538.765110: tracing_mark_write: C|7459|hwui_Layer_count|0
   2461 DispSync-615   (  594) [005] d..3   538.765111: sugov_set_iowait_boost: skipping iow boost
   2462 rcuop/4-44    (   44) [001] d..4   538.765113: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   2463 DispSync-615   (  594) [005] d..3   538.765122: sugov_set_iowait_boost: skipping iow boost
   2464 RenderThread-7591 ( 7459) [004] ...1   538.765127: tracing_mark_write: E
   2465 rcuop/4-44    (   44) [001] d..3   538.765130: sugov_set_iowait_boost: doing iow boost
   2466 EventThread-627 ( 594) [002] d..3   538.765136: sugov_set_iowait_boost: doing iow boost
   2467 DispSync-615   (  594) [005] d..3   538.765137: sugov_set_iowait_boost: skipping iow boost
   2468 EventThread-629   (  594) [000] d..3   538.765142: sugov_set_iowait_boost: doing iow boost
   2469 DispSync-615   (  594) [005] d..3   538.765142: sched_switch: prev_comm=DispSync prev_pid=615 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   2470 EventThread-627 ( 594) [002] d..3   538.765149: sched_switch: prev_comm=EventThread prev_pid=627 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   2471 RenderThread-7591 ( 7459) [004] d..3   538.765158: sched_switch: prev_comm=RenderThread prev_pid=7591 prev_prio=110 prev_state=S ==> next_comm=Binder:594_5 next_pid=2074 next_prio=110
   2472 EventThread-629   (  594) [000] d..3   538.765160: sched_switch: prev_comm=EventThread prev_pid=629 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   2473 rcuop/4-44    (   44) [001] d..3   538.765168: sched_switch: prev_comm=rcuop/4 prev_pid=44 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2474           <idle>-0     (-----) [005] d..2   538.765169: cpu_idle: state=0 cpu_id=5
   2475           <idle>-0     (-----) [002] d..2   538.765190: cpu_idle: state=0 cpu_id=2
   2476           <idle>-0     (-----) [001] d..2   538.765210: cpu_idle: state=0 cpu_id=1
   2477 rcu_preempt-7     (    7) [000] d..3   538.765220: 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
   2478 Binder:594_5-2074 ( 594) [004] d..3   538.765246: sched_switch: prev_comm=Binder:594_5 prev_pid=2074 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2479           <idle>-0     (-----) [000] d..2   538.765262: cpu_idle: state=0 cpu_id=0
   2480           <idle>-0     (-----) [004] d..2   538.765273: cpu_idle: state=0 cpu_id=4
   2481 Binder:1118_7-1846  ( 1118) [003] d..5   538.765371: sugov_set_iowait_boost: doing iow boost
   2482 Binder:1118_7-1846  ( 1118) [003] d..5   538.765383: sugov_set_iowait_boost: doing iow boost
   2483 Binder:1118_7-1846  ( 1118) [003] d..5   538.765397: sched_wakeup: comm=power (a] 1.1-servi pid=704 prio=120 target_cpu=003
   2484 Binder:1118_7-1846  ( 1118) [003] d..3   538.765464: sched_switch: prev_comm=Binder:1118_7 prev_pid=1846 prev_prio=120 prev_state=S ==> next_comm=power (a] 1.1-servi next_pid=704 next_prio=120
   2485           <idle>-0     (-----) [005] ...2   538.765560: cpu_idle: state=4294967295 cpu_id=5
   2486           <idle>-0     (-----) [005] d..2   538.765567: cpu_idle: state=0 cpu_id=5
   2487 power (a] 1.1-servi-704   (  704) [003] d..4   538.765604: sched_wakeup: comm=Binder:1118_7 pid=1846 prio=120 target_cpu=003
   2488 power (a] 1.1-servi-704   (  704) [003] d..3   538.765685: sched_switch: prev_comm=power (a] 1.1-servi prev_pid=704 prev_prio=120 prev_state=S ==> next_comm=Binder:1118_7 next_pid=1846 next_prio=120
   2489 Binder:1118_7-1846  ( 1118) [003] d..3   538.765865: sched_switch: prev_comm=Binder:1118_7 prev_pid=1846 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
   2490           <idle>-0     (-----) [003] d..2   538.765912: cpu_idle: state=0 cpu_id=3
   2491           <idle>-0     (-----) [004] d.s5   538.766638: sugov_set_iowait_boost: skipping iow boost
   2492           <idle>-0     (-----) [000] d.h3   538.766639: sugov_set_iowait_boost: doing iow boost
   2493           <idle>-0     (-----) [004] dns5   538.766648: sched_wakeup: comm=kworker/4:2 pid=463 prio=120 target_cpu=004
   2494           <idle>-0     (-----) [000] dnh3   538.766651: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2495           <idle>-0     (-----) [000] .n.2   538.766665: cpu_idle: state=4294967295 cpu_id=0
   2496           <idle>-0     (-----) [004] .n.2   538.766676: cpu_idle: state=4294967295 cpu_id=4
   2497           <idle>-0     (-----) [004] d..3   538.766689: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:2 next_pid=463 next_prio=120
   2498           <idle>-0     (-----) [000] d..3   538.766692: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2499 kworker/4:2-463 ( 463) [004] d..3   538.766749: sugov_set_iowait_boost: skipping iow boost
   2500 kworker/4:2-463 ( 463) [004] d..3   538.766769: sched_switch: prev_comm=kworker/4:2 prev_pid=463 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2501           <idle>-0     (-----) [004] d..2   538.766791: cpu_idle: state=0 cpu_id=4
   2502 kworker/u16:11-682   (  682) [000] d..4   538.766792: sched_wakeup: comm=kworker/u16:12 pid=1014 prio=120 target_cpu=000
   2503 kworker/u16:11-682   (  682) [000] d..3   538.767178: sugov_set_iowait_boost: doing iow boost
   2504 kworker/u16:11-682   (  682) [000] d..3   538.767199: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:12 next_pid=1014 next_prio=120
   2505           <idle>-0     (-----) [004] dnh3   538.767342: sched_wakeup: comm=kworker/u16:7 pid=347 prio=120 target_cpu=004
   2506           <idle>-0     (-----) [004] .n.2   538.767349: cpu_idle: state=4294967295 cpu_id=4
   2507           <idle>-0     (-----) [004] d..3   538.767360: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:7 next_pid=347 next_prio=120
   2508 kworker/u16:7-347 ( 347) [004] d..3   538.767390: sched_switch: prev_comm=kworker/u16:7 prev_pid=347 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2509           <idle>-0     (-----) [004] d..2   538.767405: cpu_idle: state=0 cpu_id=4
   2510 kworker/u16:12-1014 ( 1014) [000] d..3   538.767413: sched_switch: prev_comm=kworker/u16:12 prev_pid=1014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2511           <idle>-0     (-----) [000] d..2   538.767447: cpu_idle: state=0 cpu_id=0
   2512           <idle>-0     (-----) [004] dnh4   538.767479: sched_wakeup: comm=perfd pid=813 prio=120 target_cpu=004
   2513           <idle>-0     (-----) [004] dnh4   538.767499: sched_wakeup: comm=ChromiumNet pid=7502 prio=130 target_cpu=005
   2514           <idle>-0     (-----) [005] .n.2   538.767502: cpu_idle: state=4294967295 cpu_id=5
   2515           <idle>-0     (-----) [004] .n.2   538.767507: cpu_idle: state=4294967295 cpu_id=4
   2516           <idle>-0     (-----) [005] d..3   538.767515: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ChromiumNet next_pid=7502 next_prio=130
   2517           <idle>-0     (-----) [004] d..3   538.767518: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=perfd next_pid=813 next_prio=120
   2518 perfd-813 ( 813) [004] d..3   538.767571: sched_switch: prev_comm=perfd prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2519           <idle>-0     (-----) [004] d..2   538.767590: cpu_idle: state=0 cpu_id=4
   2520 ChromiumNet-7502 ( 7459) [005] d..3   538.767664: sched_switch: prev_comm=ChromiumNet prev_pid=7502 prev_prio=130 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
   2521           <idle>-0     (-----) [005] d..2   538.767686: cpu_idle: state=0 cpu_id=5
   2522           <idle>-0     (-----) [005] ...2   538.768113: cpu_idle: state=4294967295 cpu_id=5
   2523           <idle>-0     (-----) [005] d..2   538.768119: cpu_idle: state=0 cpu_id=5
   2524           <idle>-0     (-----) [000] d.h4   538.768702: sugov_set_iowait_boost: doing iow boost
   2525           <idle>-0     (-----) [000] d.h4   538.768712: sched_blocked_reason: pid=682 iowait=0 caller=venus_hfi_pm_handler+0x288/0x4d0
   2526           <idle>-0     (-----) [000] dnh4   538.768724: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2527           <idle>-0     (-----) [000] .n.2   538.768740: cpu_idle: state=4294967295 cpu_id=0
   2528           <idle>-0     (-----) [000] d..3   538.768758: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2529 kworker/u16:11-682   (  682) [000] d..3   538.768910: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2530           <idle>-0     (-----) [000] d..2   538.768941: cpu_idle: state=0 cpu_id=0
   2531           <idle>-0     (-----) [000] d.h4   538.769402: sugov_set_iowait_boost: doing iow boost
   2532           <idle>-0     (-----) [000] d.h4   538.769409: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2533           <idle>-0     (-----) [000] dnh4   538.769420: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2534           <idle>-0     (-----) [000] .n.2   538.769436: cpu_idle: state=4294967295 cpu_id=0
   2535           <idle>-0     (-----) [000] d..3   538.769452: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2536 kworker/u16:11-682   (  682) [000] d..3   538.769518: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2537           <idle>-0     (-----) [000] d..2   538.769544: cpu_idle: state=0 cpu_id=0
   2538           <idle>-0     (-----) [004] d.h3   538.770035: sugov_set_iowait_boost: skipping iow boost
   2539           <idle>-0     (-----) [004] dnh3   538.770041: sched_wakeup: comm=kworker/u16:7 pid=347 prio=120 target_cpu=004
   2540           <idle>-0     (-----) [004] .n.2   538.770048: cpu_idle: state=4294967295 cpu_id=4
   2541           <idle>-0     (-----) [004] d..3   538.770059: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:7 next_pid=347 next_prio=120
   2542 kworker/u16:7-347 ( 347) [004] d..5   538.770078: sched_wakeup: comm=kworker/4:2 pid=463 prio=120 target_cpu=004
   2543 kworker/u16:7-347 ( 347) [004] d..3   538.770088: sched_switch: prev_comm=kworker/u16:7 prev_pid=347 prev_prio=120 prev_state=S ==> next_comm=kworker/4:2 next_pid=463 next_prio=120
   2544           <idle>-0     (-----) [000] d.h4   538.770109: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2545 kworker/4:2-463 ( 463) [004] d..3   538.770114: sched_switch: prev_comm=kworker/4:2 prev_pid=463 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2546           <idle>-0     (-----) [000] dnh4   538.770121: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2547           <idle>-0     (-----) [004] d..2   538.770133: cpu_idle: state=0 cpu_id=4
   2548           <idle>-0     (-----) [000] dns4   538.770155: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   2549           <idle>-0     (-----) [000] .n.2   538.770191: cpu_idle: state=4294967295 cpu_id=0
   2550           <idle>-0     (-----) [000] d..3   538.770209: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   2551 rcu_preempt-7     (    7) [000] d..5   538.770286: sched_wakeup: comm=rcuop/4 pid=44 prio=120 target_cpu=001
   2552           <idle>-0     (-----) [001] .n.2   538.770292: cpu_idle: state=4294967295 cpu_id=1
   2553 rcu_preempt-7     (    7) [000] d..3   538.770309: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2554           <idle>-0     (-----) [001] d..3   538.770319: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=44 next_prio=120
   2555 rcuop/4-44    (   44) [001] d..3   538.770345: sugov_set_iowait_boost: doing iow boost
   2556 kworker/u16:11-682   (  682) [000] d..3   538.770368: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2557 rcuop/4-44    (   44) [001] d..3   538.770382: sched_switch: prev_comm=rcuop/4 prev_pid=44 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2558           <idle>-0     (-----) [000] d..2   538.770404: cpu_idle: state=0 cpu_id=0
   2559           <idle>-0     (-----) [001] d..2   538.770418: cpu_idle: state=0 cpu_id=1
   2560           <idle>-0     (-----) [000] d.h4   538.770869: sugov_set_iowait_boost: doing iow boost
   2561           <idle>-0     (-----) [000] d.h4   538.770877: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2562           <idle>-0     (-----) [000] dnh4   538.770888: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2563           <idle>-0     (-----) [000] .n.2   538.770902: cpu_idle: state=4294967295 cpu_id=0
   2564           <idle>-0     (-----) [000] d..3   538.770925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2565 kworker/u16:11-682   (  682) [000] d..3   538.770986: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2566           <idle>-0     (-----) [000] d..2   538.771015: cpu_idle: state=0 cpu_id=0
   2567           <idle>-0     (-----) [000] d.h4   538.771481: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2568           <idle>-0     (-----) [000] dnh4   538.771492: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2569           <idle>-0     (-----) [000] .n.2   538.771507: cpu_idle: state=4294967295 cpu_id=0
   2570           <idle>-0     (-----) [000] d..3   538.771529: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2571 kworker/u16:11-682   (  682) [000] d..3   538.771584: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2572           <idle>-0     (-----) [000] d..2   538.771613: cpu_idle: state=0 cpu_id=0
   2573           <idle>-0     (-----) [000] d.h4   538.772082: sugov_set_iowait_boost: doing iow boost
   2574           <idle>-0     (-----) [000] d.h4   538.772089: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2575           <idle>-0     (-----) [000] dnh4   538.772100: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2576           <idle>-0     (-----) [000] .n.2   538.772114: cpu_idle: state=4294967295 cpu_id=0
   2577           <idle>-0     (-----) [000] d..3   538.772135: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2578 kworker/u16:11-682   (  682) [000] d..3   538.772191: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2579           <idle>-0     (-----) [000] d..2   538.772219: cpu_idle: state=0 cpu_id=0
   2580           <idle>-0     (-----) [000] d.h4   538.772688: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2581           <idle>-0     (-----) [000] dnh4   538.772699: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2582           <idle>-0     (-----) [000] .n.2   538.772713: cpu_idle: state=4294967295 cpu_id=0
   2583           <idle>-0     (-----) [000] d..3   538.772734: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2584 kworker/u16:11-682   (  682) [000] d..3   538.772769: sugov_set_iowait_boost: doing iow boost
   2585 kworker/u16:11-682   (  682) [000] d..3   538.772804: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2586           <idle>-0     (-----) [000] d..2   538.772835: cpu_idle: state=0 cpu_id=0
   2587           <idle>-0     (-----) [000] d.h4   538.773301: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2588           <idle>-0     (-----) [000] dnh4   538.773313: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2589           <idle>-0     (-----) [000] .n.2   538.773327: cpu_idle: state=4294967295 cpu_id=0
   2590           <idle>-0     (-----) [000] d..3   538.773351: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2591 kworker/u16:11-682   (  682) [000] d..3   538.773397: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2592           <idle>-0     (-----) [000] dn.4   538.773430: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
   2593           <idle>-0     (-----) [000] d..3   538.773447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
   2594 ksoftirqd/0-3 ( 3) [000] d..3   538.773497: 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
   2595           <idle>-0     (-----) [000] d..2   538.773526: cpu_idle: state=0 cpu_id=0
   2596           <idle>-0     (-----) [000] d.h4   538.773895: sugov_set_iowait_boost: doing iow boost
   2597           <idle>-0     (-----) [000] d.h4   538.773902: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2598           <idle>-0     (-----) [000] dnh4   538.773913: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2599           <idle>-0     (-----) [000] .n.2   538.773927: cpu_idle: state=4294967295 cpu_id=0
   2600           <idle>-0     (-----) [000] d..3   538.773949: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2601 kworker/u16:11-682   (  682) [000] d..3   538.773996: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2602           <idle>-0     (-----) [000] d..2   538.774025: cpu_idle: state=0 cpu_id=0
   2603           <idle>-0     (-----) [000] d.h4   538.774492: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2604           <idle>-0     (-----) [000] dnh4   538.774503: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2605           <idle>-0     (-----) [000] .n.2   538.774517: cpu_idle: state=4294967295 cpu_id=0
   2606           <idle>-0     (-----) [000] d..3   538.774538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2607 kworker/u16:11-682   (  682) [000] d..3   538.774585: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2608           <idle>-0     (-----) [000] d..2   538.774613: cpu_idle: state=0 cpu_id=0
   2609           <idle>-0     (-----) [000] d.h4   538.775082: sugov_set_iowait_boost: doing iow boost
   2610           <idle>-0     (-----) [000] d.h4   538.775090: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2611           <idle>-0     (-----) [000] dnh4   538.775100: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2612           <idle>-0     (-----) [000] .n.2   538.775114: cpu_idle: state=4294967295 cpu_id=0
   2613           <idle>-0     (-----) [000] d..3   538.775136: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2614 kworker/u16:11-682   (  682) [000] d..3   538.775182: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2615           <idle>-0     (-----) [000] d..2   538.775211: cpu_idle: state=0 cpu_id=0
   2616           <idle>-0     (-----) [000] d.h4   538.775684: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2617           <idle>-0     (-----) [000] dnh4   538.775695: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2618           <idle>-0     (-----) [000] .n.2   538.775709: cpu_idle: state=4294967295 cpu_id=0
   2619           <idle>-0     (-----) [000] d..3   538.775730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2620 kworker/u16:11-682   (  682) [000] d..3   538.775776: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2621           <idle>-0     (-----) [000] d..2   538.775805: cpu_idle: state=0 cpu_id=0
   2622           <idle>-0     (-----) [000] d.h4   538.776274: sugov_set_iowait_boost: doing iow boost
   2623           <idle>-0     (-----) [000] d.h4   538.776281: sched_blocked_reason: pid=682 iowait=0 caller=__venus_power_off+0xf8/0x1e4
   2624           <idle>-0     (-----) [000] dnh4   538.776291: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2625           <idle>-0     (-----) [000] .n.2   538.776305: cpu_idle: state=4294967295 cpu_id=0
   2626           <idle>-0     (-----) [000] d..3   538.776327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2627 kworker/u16:11-682   (  682) [000] ...1   538.776707: clock_set_rate: mmssnoc_axi_clk state=74587500 cpu_id=0
   2628 kworker/u16:11-682   (  682) [000] ...1   538.776743: clock_set_rate: mmssnoc_axi_a_clk state=74587500 cpu_id=0
   2629 kworker/u16:11-682   (  682) [000] d..7   538.776877: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2630           <idle>-0     (-----) [001] .n.2   538.776881: cpu_idle: state=4294967295 cpu_id=1
   2631           <idle>-0     (-----) [001] d..3   538.776907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2632 kworker/u16:11-682   (  682) [000] d..3   538.776930: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2633           <idle>-0     (-----) [000] d..2   538.776973: cpu_idle: state=0 cpu_id=0
   2634           <idle>-0     (-----) [000] d.h3   538.776993: sched_blocked_reason: pid=682 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2635           <idle>-0     (-----) [005] ...2   538.776996: cpu_idle: state=4294967295 cpu_id=5
   2636           <idle>-0     (-----) [000] dnh3   538.777004: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2637           <idle>-0     (-----) [005] d..2   538.777005: cpu_idle: state=0 cpu_id=5
   2638           <idle>-0     (-----) [000] .n.2   538.777017: cpu_idle: state=4294967295 cpu_id=0
   2639 smem_native_rpm-87    (   87) [001] d..3   538.777033: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2640           <idle>-0     (-----) [000] d..3   538.777040: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2641 kworker/u16:11-682   (  682) [000] ...1   538.777062: clock_set_rate: mmss_mnoc_maxi_clk state=75000000 cpu_id=0
   2642           <idle>-0     (-----) [001] d..2   538.777069: cpu_idle: state=0 cpu_id=1
   2643 kworker/u16:11-682   (  682) [000] ...1   538.777074: clock_set_rate: maxi_clk_src state=75000000 cpu_id=0
   2644 kworker/u16:11-682   (  682) [000] d..7   538.777238: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2645           <idle>-0     (-----) [001] .n.2   538.777242: cpu_idle: state=4294967295 cpu_id=1
   2646           <idle>-0     (-----) [001] d..3   538.777264: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2647 kworker/u16:11-682   (  682) [000] d..3   538.777288: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2648           <idle>-0     (-----) [000] d..2   538.777322: cpu_idle: state=0 cpu_id=0
   2649           <idle>-0     (-----) [005] ...2   538.777339: cpu_idle: state=4294967295 cpu_id=5
   2650           <idle>-0     (-----) [000] d.h3   538.777341: sugov_set_iowait_boost: doing iow boost
   2651           <idle>-0     (-----) [005] d..2   538.777348: cpu_idle: state=0 cpu_id=5
   2652           <idle>-0     (-----) [000] d.h3   538.777349: sched_blocked_reason: pid=682 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2653           <idle>-0     (-----) [000] dnh3   538.777360: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2654           <idle>-0     (-----) [000] .n.2   538.777372: cpu_idle: state=4294967295 cpu_id=0
   2655 smem_native_rpm-87    (   87) [001] d..3   538.777376: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2656           <idle>-0     (-----) [000] d..3   538.777393: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2657           <idle>-0     (-----) [001] d..2   538.777413: cpu_idle: state=0 cpu_id=1
   2658 kworker/u16:11-682   (  682) [000] d..7   538.777539: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2659           <idle>-0     (-----) [001] .n.2   538.777543: cpu_idle: state=4294967295 cpu_id=1
   2660           <idle>-0     (-----) [001] d..3   538.777564: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2661 kworker/u16:11-682   (  682) [000] d..3   538.777599: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2662           <idle>-0     (-----) [000] d..2   538.777636: cpu_idle: state=0 cpu_id=0
   2663           <idle>-0     (-----) [005] ...2   538.777648: cpu_idle: state=4294967295 cpu_id=5
   2664           <idle>-0     (-----) [000] d.h3   538.777653: sched_blocked_reason: pid=682 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2665           <idle>-0     (-----) [005] d..2   538.777656: cpu_idle: state=0 cpu_id=5
   2666 smem_native_rpm-87    (   87) [001] d..3   538.777660: sugov_set_iowait_boost: doing iow boost
   2667           <idle>-0     (-----) [000] dnh3   538.777665: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2668           <idle>-0     (-----) [000] .n.2   538.777677: cpu_idle: state=4294967295 cpu_id=0
   2669 smem_native_rpm-87    (   87) [001] d..3   538.777695: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2670           <idle>-0     (-----) [000] d..3   538.777700: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2671           <idle>-0     (-----) [001] d..2   538.777731: cpu_idle: state=0 cpu_id=1
   2672 kworker/u16:11-682   (  682) [000] d..7   538.777847: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2673           <idle>-0     (-----) [001] .n.2   538.777851: cpu_idle: state=4294967295 cpu_id=1
   2674           <idle>-0     (-----) [001] d..3   538.777873: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2675 kworker/u16:11-682   (  682) [000] d..3   538.777895: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2676           <idle>-0     (-----) [000] d..2   538.777932: cpu_idle: state=0 cpu_id=0
   2677           <idle>-0     (-----) [005] ...2   538.777942: cpu_idle: state=4294967295 cpu_id=5
   2678           <idle>-0     (-----) [000] d.h3   538.777950: sched_blocked_reason: pid=682 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2679           <idle>-0     (-----) [005] d..2   538.777950: cpu_idle: state=0 cpu_id=5
   2680           <idle>-0     (-----) [000] dnh3   538.777961: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=000
   2681           <idle>-0     (-----) [000] .n.2   538.777973: cpu_idle: state=4294967295 cpu_id=0
   2682 smem_native_rpm-87    (   87) [001] d..3   538.777979: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2683           <idle>-0     (-----) [000] d..3   538.777995: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2684 kworker/u16:11-682   (  682) [000] ...1   538.778014: clock_set_rate: cnoc_clk state=125 cpu_id=0
   2685           <idle>-0     (-----) [001] d..2   538.778015: cpu_idle: state=0 cpu_id=1
   2686 kworker/u16:11-682   (  682) [000] ...1   538.778043: clock_set_rate: ahb_clk_src state=19200000 cpu_id=0
   2687 kworker/u16:11-682   (  682) [000] d..7   538.778412: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2688           <idle>-0     (-----) [001] .n.2   538.778416: cpu_idle: state=4294967295 cpu_id=1
   2689           <idle>-0     (-----) [001] d..3   538.778437: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2690 kworker/u16:11-682   (  682) [000] d..3   538.778463: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2691           <idle>-0     (-----) [000] d..2   538.778501: cpu_idle: state=0 cpu_id=0
   2692           <idle>-0     (-----) [005] ...2   538.778513: cpu_idle: state=4294967295 cpu_id=5
   2693 smem_native_rpm-87    (   87) [001] d.h3   538.778520: sugov_set_iowait_boost: doing iow boost
   2694           <idle>-0     (-----) [005] d..2   538.778521: cpu_idle: state=0 cpu_id=5
   2695 smem_native_rpm-87    (   87) [001] d.h3   538.778529: sched_blocked_reason: pid=682 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2696 smem_native_rpm-87    (   87) [001] d.h3   538.778543: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=001
   2697 smem_native_rpm-87    (   87) [001] d..3   538.778578: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2698 kworker/u16:11-682   (  682) [001] dn.7   538.778700: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2699 kworker/u16:11-682   (  682) [001] d..3   538.778721: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2700 smem_native_rpm-87    (   87) [001] d..3   538.778744: sugov_set_iowait_boost: doing iow boost
   2701 smem_native_rpm-87    (   87) [001] d..3   538.778760: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2702           <idle>-0     (-----) [005] ...2   538.778785: cpu_idle: state=4294967295 cpu_id=5
   2703           <idle>-0     (-----) [005] d..2   538.778794: cpu_idle: state=0 cpu_id=5
   2704 kworker/u16:11-682   (  682) [001] dn.7   538.778868: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2705 kworker/u16:11-682   (  682) [001] d..3   538.778887: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2706 smem_native_rpm-87    (   87) [001] d..3   538.778916: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2707 kworker/u16:11-682   (  682) [001] d..3   538.778960: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2708           <idle>-0     (-----) [001] d.h3   538.778987: sched_blocked_reason: pid=682 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2709           <idle>-0     (-----) [005] ...2   538.778996: cpu_idle: state=4294967295 cpu_id=5
   2710           <idle>-0     (-----) [001] dnh3   538.778997: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=001
   2711           <idle>-0     (-----) [005] d..2   538.779002: cpu_idle: state=0 cpu_id=5
   2712           <idle>-0     (-----) [001] d..3   538.779018: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2713 kworker/u16:11-682   (  682) [001] ...1   538.779110: clock_set_rate: bimc_msmbus_clk state=100000000 cpu_id=1
   2714 kworker/u16:11-682   (  682) [001] ...1   538.779117: clock_set_rate: bimc_clk state=100000000 cpu_id=1
   2715 kworker/u16:11-682   (  682) [001] dn.7   538.779232: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2716 kworker/u16:11-682   (  682) [001] d..3   538.779252: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2717 smem_native_rpm-87    (   87) [001] d..3   538.779283: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2718 kworker/u16:11-682   (  682) [001] d..3   538.779326: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2719           <idle>-0     (-----) [001] d.h3   538.779352: sched_blocked_reason: pid=682 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2720           <idle>-0     (-----) [005] ...2   538.779359: cpu_idle: state=4294967295 cpu_id=5
   2721           <idle>-0     (-----) [001] dnh3   538.779363: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=001
   2722           <idle>-0     (-----) [005] d..2   538.779366: cpu_idle: state=0 cpu_id=5
   2723           <idle>-0     (-----) [001] d..3   538.779384: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2724 kworker/u16:11-682   (  682) [001] ...1   538.779438: clock_set_rate: mmssnoc_axi_clk state=47393952 cpu_id=1
   2725 kworker/u16:11-682   (  682) [001] ...1   538.779460: clock_set_rate: mmssnoc_axi_a_clk state=47393952 cpu_id=1
   2726 kworker/u16:11-682   (  682) [001] dn.7   538.779545: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2727 kworker/u16:11-682   (  682) [001] d..3   538.779565: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2728 smem_native_rpm-87    (   87) [001] d..3   538.779594: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2729 kworker/u16:11-682   (  682) [001] d..3   538.779636: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2730           <idle>-0     (-----) [001] d.h4   538.779660: sched_blocked_reason: pid=682 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   2731           <idle>-0     (-----) [005] ...2   538.779667: cpu_idle: state=4294967295 cpu_id=5
   2732           <idle>-0     (-----) [001] dnh4   538.779670: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=001
   2733           <idle>-0     (-----) [005] d..2   538.779672: cpu_idle: state=0 cpu_id=5
   2734           <idle>-0     (-----) [001] d..3   538.779692: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2735 kworker/u16:11-682   (  682) [001] d..7   538.779892: sugov_set_iowait_boost: doing iow boost
   2736 kworker/u16:11-682   (  682) [001] dn.7   538.779906: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2737           <idle>-0     (-----) [005] ...2   538.779968: cpu_idle: state=4294967295 cpu_id=5
   2738           <idle>-0     (-----) [005] d..2   538.779974: cpu_idle: state=0 cpu_id=5
   2739 kworker/u16:11-682   (  682) [001] d..3   538.779990: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2740 smem_native_rpm-87    (   87) [001] d..3   538.780028: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2741 kworker/u16:11-682   (  682) [001] d..3   538.780085: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2742           <idle>-0     (-----) [001] d..2   538.780126: cpu_idle: state=0 cpu_id=1
   2743           <idle>-0     (-----) [000] d.h8   538.780678: sugov_set_iowait_boost: doing iow boost
   2744           <idle>-0     (-----) [000] dnh8   538.780691: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   2745           <idle>-0     (-----) [000] .n.2   538.780722: cpu_idle: state=4294967295 cpu_id=0
   2746           <idle>-0     (-----) [000] d..3   538.780750: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   2747 kworker/0:5-1633 ( 1633) [000] d..5   538.780825: sched_wakeup: comm=SDM_EventThread pid=611 prio=111 target_cpu=002
   2748           <idle>-0     (-----) [002] .n.2   538.780831: cpu_idle: state=4294967295 cpu_id=2
   2749           <idle>-0     (-----) [002] d..3   538.780858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=611 next_prio=111
   2750 kworker/0:5-1633 ( 1633) [000] d..3   538.780882: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2751           <idle>-0     (-----) [000] d..2   538.780918: cpu_idle: state=0 cpu_id=0
   2752 SDM_EventThread-611   (  596) [002] d..5   538.780994: sched_wakeup: comm=HwBinder:594_1 pid=612 prio=120 target_cpu=000
   2753           <idle>-0     (-----) [000] .n.2   538.780999: cpu_idle: state=4294967295 cpu_id=0
   2754           <idle>-0     (-----) [000] d..3   538.781022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:594_1 next_pid=612 next_prio=120
   2755           <idle>-0     (-----) [004] d.h4   538.781033: sugov_set_iowait_boost: skipping iow boost
   2756           <idle>-0     (-----) [004] dnh4   538.781039: sched_wakeup: comm=wpa_supplicant pid=1972 prio=120 target_cpu=004
   2757           <idle>-0     (-----) [004] .n.2   538.781047: cpu_idle: state=4294967295 cpu_id=4
   2758           <idle>-0     (-----) [004] d..3   538.781060: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wpa_supplicant next_pid=1972 next_prio=120
   2759 SDM_EventThread-611   (  596) [002] d..3   538.781095: sched_switch: prev_comm=SDM_EventThread prev_pid=611 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   2760 HwBinder:594_1-612   (  594) [000] ...1   538.781118: tracing_mark_write: C|594|HW_VSYNC_0|1
   2761           <idle>-0     (-----) [002] d..2   538.781136: cpu_idle: state=0 cpu_id=2
   2762 wpa_supplicant-1972  ( 1972) [004] d..3   538.781194: sched_switch: prev_comm=wpa_supplicant prev_pid=1972 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   2763 HwBinder:594_1-612   (  594) [000] d..3   538.781219: sched_switch: prev_comm=HwBinder:594_1 prev_pid=612 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2764           <idle>-0     (-----) [004] d..2   538.781220: cpu_idle: state=0 cpu_id=4
   2765           <idle>-0     (-----) [005] ...2   538.781248: cpu_idle: state=4294967295 cpu_id=5
   2766           <idle>-0     (-----) [005] d..2   538.781257: cpu_idle: state=0 cpu_id=5
   2767           <idle>-0     (-----) [000] dnh3   538.781267: sched_wakeup: comm=DispSync pid=615 prio=97 target_cpu=000
   2768           <idle>-0     (-----) [000] d..3   538.781291: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=615 next_prio=97
   2769 DispSync-615   (  594) [000] ...1   538.781342: tracing_mark_write: C|594|VSYNC-sf|1
   2770 DispSync-615   (  594) [000] d..3   538.781385: sched_wakeup: comm=EventThread pid=629 prio=97 target_cpu=001
   2771           <idle>-0     (-----) [001] .n.2   538.781394: cpu_idle: state=4294967295 cpu_id=1
   2772           <idle>-0     (-----) [001] d..3   538.781414: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=EventThread next_pid=629 next_prio=97
   2773 DispSync-615   (  594) [000] d..3   538.781416: sugov_set_iowait_boost: doing iow boost
   2774 DispSync-615   (  594) [000] d..3   538.781457: sugov_set_iowait_boost: doing iow boost
   2775 DispSync-615   (  594) [000] d..3   538.781468: sched_switch: prev_comm=DispSync prev_pid=615 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2776           <idle>-0     (-----) [000] d..2   538.781510: cpu_idle: state=0 cpu_id=0
   2777 EventThread-629   (  594) [001] d..5   538.781524: sched_wakeup: comm=surfaceflinger pid=594 prio=98 target_cpu=000
   2778           <idle>-0     (-----) [000] .n.2   538.781529: cpu_idle: state=4294967295 cpu_id=0
   2779           <idle>-0     (-----) [000] d..3   538.781553: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=594 next_prio=98
   2780 EventThread-629   (  594) [001] d..3   538.781558: sugov_set_iowait_boost: doing iow boost
   2781 EventThread-629   (  594) [001] d..3   538.781577: sugov_set_iowait_boost: doing iow boost
   2782           <idle>-0     (-----) [005] ...2   538.781589: cpu_idle: state=4294967295 cpu_id=5
   2783           <idle>-0     (-----) [005] d..2   538.781597: cpu_idle: state=0 cpu_id=5
   2784 EventThread-629   (  594) [001] d..3   538.781606: sugov_set_iowait_boost: doing iow boost
   2785 EventThread-629   (  594) [001] d..3   538.781618: sched_switch: prev_comm=EventThread prev_pid=629 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2786           <idle>-0     (-----) [001] d..2   538.781657: cpu_idle: state=0 cpu_id=1
   2787 surfaceflinger-594 ( 594) [000] ...1   538.781701: tracing_mark_write: B|594|onMessageReceived
   2788 surfaceflinger-594 ( 594) [000] ...1   538.781761: tracing_mark_write: C|594|FrameMissed|0
   2789 surfaceflinger-594 ( 594) [000] ...1   538.781783: tracing_mark_write: B|594|handleMessageInvalidate
   2790 surfaceflinger-594 ( 594) [000] ...1   538.781832: tracing_mark_write: B|594|latchBuffer
   2791 surfaceflinger-594 ( 594) [000] ...1   538.781887: tracing_mark_write: B|594|query
   2792 surfaceflinger-594 ( 594) [000] ...1   538.781899: tracing_mark_write: E
   2793 surfaceflinger-594 ( 594) [000] ...1   538.781917: tracing_mark_write: B|594|updateTexImage
   2794 surfaceflinger-594 ( 594) [000] ...1   538.781965: tracing_mark_write: B|594|acquireBuffer
   2795           <idle>-0     (-----) [005] ...2   538.781976: cpu_idle: state=4294967295 cpu_id=5
   2796           <idle>-0     (-----) [005] d..2   538.781981: cpu_idle: state=0 cpu_id=5
   2797 surfaceflinger-594 ( 594) [000] ...1   538.781998: tracing_mark_write: B|594|com.google.android.youtube/com.google.android.apps.youtube.app.WatchWhileActivity#0: 0
   2798 surfaceflinger-594 ( 594) [000] ...1   538.782008: tracing_mark_write: E
   2799 surfaceflinger-594 ( 594) [000] ...1   538.782039: tracing_mark_write: C|594|com.google.android.youtube/com.google.android.apps.youtube.app.WatchWhileActivity#0|0
   2800 surfaceflinger-594 ( 594) [000] ...1   538.782121: tracing_mark_write: E
   2801 surfaceflinger-594 ( 594) [000] ...1   538.782344: tracing_mark_write: B|594|wait
   2802 surfaceflinger-594 ( 594) [000] ...1   538.782369: tracing_mark_write: E
   2803 surfaceflinger-594 ( 594) [000] d..4   538.782425: sugov_set_iowait_boost: doing iow boost
   2804 surfaceflinger-594 ( 594) [000] d..4   538.782440: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   2805 surfaceflinger-594 ( 594) [000] ...1   538.782493: tracing_mark_write: E
   2806 surfaceflinger-594 ( 594) [000] ...1   538.782541: tracing_mark_write: E
   2807 surfaceflinger-594 ( 594) [000] ...1   538.782575: tracing_mark_write: E
   2808 surfaceflinger-594 ( 594) [000] ...1   538.782590: tracing_mark_write: E
   2809 surfaceflinger-594 ( 594) [000] ...1   538.782616: tracing_mark_write: B|594|onMessageReceived
   2810 surfaceflinger-594 ( 594) [000] ...1   538.782632: tracing_mark_write: B|594|handleMessageRefresh
   2811 surfaceflinger-594 ( 594) [000] ...1   538.782649: tracing_mark_write: B|594|preComposition
   2812 surfaceflinger-594 ( 594) [000] ...1   538.782674: tracing_mark_write: E
   2813 surfaceflinger-594 ( 594) [000] ...1   538.782695: tracing_mark_write: B|594|rebuildLayerStacks
   2814 surfaceflinger-594 ( 594) [000] ...1   538.782704: tracing_mark_write: E
   2815 surfaceflinger-594 ( 594) [000] ...1   538.782721: tracing_mark_write: B|594|setUpHWComposer
   2816 surfaceflinger-594 ( 594) [000] ...1   538.782835: tracing_mark_write: B|594|prepare
   2817 surfaceflinger-594 ( 594) [000] d..5   538.782996: sched_wakeup: comm=composer (a] 2.1-se pid=596 prio=97 target_cpu=001
   2818           <idle>-0     (-----) [001] .n.2   538.783002: cpu_idle: state=4294967295 cpu_id=1
   2819           <idle>-0     (-----) [001] d..3   538.783023: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=composer (a] 2.1-se next_pid=596 next_prio=97
   2820 surfaceflinger-594 ( 594) [000] d..3   538.783046: sugov_set_iowait_boost: doing iow boost
   2821 surfaceflinger-594 ( 594) [000] d..3   538.783068: sugov_set_iowait_boost: doing iow boost
   2822 surfaceflinger-594 ( 594) [000] d..3   538.783082: sched_switch: prev_comm=surfaceflinger prev_pid=594 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   2823 rcuop/0-10    (   10) [000] d..4   538.783152: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   2824 rcuop/0-10    (   10) [000] d..3   538.783176: 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
   2825 composer (a] 2.1-se-596   (  596) [001] ...1   538.783218: tracing_mark_write: B|596|HWCSession::ValidateDisplay::
   2826 rcu_preempt-7     (    7) [000] d..3   538.783227: 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
   2827 composer (a] 2.1-se-596   (  596) [001] d.h2   538.783263: sugov_set_iowait_boost: doing iow boost
   2828 composer (a] 2.1-se-596   (  596) [001] d.s2   538.783298: sugov_set_iowait_boost: doing iow boost
   2829           <idle>-0     (-----) [000] d..2   538.783338: cpu_idle: state=0 cpu_id=0
   2830 composer (a] 2.1-se-596   (  596) [001] ...1   538.783921: tracing_mark_write: B|596|HWDevice::Validate::
   2831 composer (a] 2.1-se-596   (  596) [001] ...1   538.784098: tracing_mark_write: E
   2832 composer (a] 2.1-se-596   (  596) [001] ...1   538.784137: tracing_mark_write: E
   2833 composer (a] 2.1-se-596   (  596) [001] d..4   538.784263: sched_wakeup: comm=surfaceflinger pid=594 prio=98 target_cpu=000
   2834           <idle>-0     (-----) [000] .n.2   538.784264: cpu_idle: state=4294967295 cpu_id=0
   2835           <idle>-0     (-----) [000] d..3   538.784280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=594 next_prio=98
   2836 composer (a] 2.1-se-596   (  596) [001] d..3   538.784357: sugov_set_iowait_boost: doing iow boost
   2837 composer (a] 2.1-se-596   (  596) [001] d..3   538.784378: sugov_set_iowait_boost: doing iow boost
   2838 surfaceflinger-594 ( 594) [000] d.h5   538.784386: sched_wakeup: comm=POSIX timer 0 pid=626 prio=112 target_cpu=002
   2839           <idle>-0     (-----) [002] .n.2   538.784392: cpu_idle: state=4294967295 cpu_id=2
   2840 composer (a] 2.1-se-596   (  596) [001] d..3   538.784408: sugov_set_iowait_boost: doing iow boost
   2841           <idle>-0     (-----) [002] d..3   538.784420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=POSIX timer 0 next_pid=626 next_prio=112
   2842 composer (a] 2.1-se-596   (  596) [001] d..3   538.784421: sched_switch: prev_comm=composer (a] 2.1-se prev_pid=596 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2843           <idle>-0     (-----) [001] d..2   538.784468: cpu_idle: state=0 cpu_id=1
   2844 surfaceflinger-594 ( 594) [000] ...1   538.784475: tracing_mark_write: E
   2845 surfaceflinger-594 ( 594) [000] ...1   538.784489: tracing_mark_write: E
   2846 surfaceflinger-594 ( 594) [000] ...1   538.784514: tracing_mark_write: B|594|doComposition
   2847 POSIX timer 0-626   (-----) [002] d..5   538.784553: sched_wakeup: comm=Binder:1118_7 pid=1846 prio=120 target_cpu=001
   2848           <idle>-0     (-----) [001] .n.2   538.784558: cpu_idle: state=4294967295 cpu_id=1
   2849           <idle>-0     (-----) [001] d..3   538.784584: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:1118_7 next_pid=1846 next_prio=120
   2850 POSIX timer 0-626   (-----) [002] d..3   538.784612: sugov_set_iowait_boost: doing iow boost
   2851 surfaceflinger-594 ( 594) [000] ...1   538.784626: tracing_mark_write: B|594|acquireBuffer
   2852 surfaceflinger-594 ( 594) [000] ...1   538.784640: tracing_mark_write: E
   2853 POSIX timer 0-626   (-----) [002] d..3   538.784652: sched_switch: prev_comm=POSIX timer 0 prev_pid=626 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   2854 surfaceflinger-594 ( 594) [000] ...1   538.784681: tracing_mark_write: B|594|postFramebuffer
   2855           <idle>-0     (-----) [002] d..2   538.784694: cpu_idle: state=0 cpu_id=2
   2856 surfaceflinger-594 ( 594) [000] ...1   538.784700: tracing_mark_write: B|594|presentAndGetReleaseFences
   2857 surfaceflinger-594 ( 594) [000] d..5   538.784801: sched_wakeup: comm=composer (a] 2.1-se pid=596 prio=97 target_cpu=001
   2858 Binder:1118_7-1846  ( 1118) [001] d..3   538.784825: sched_switch: prev_comm=Binder:1118_7 prev_pid=1846 prev_prio=120 prev_state=R+ ==> next_comm=composer (a] 2.1-se next_pid=596 next_prio=97
   2859 surfaceflinger-594 ( 594) [000] d..3   538.784848: sugov_set_iowait_boost: doing iow boost
   2860 surfaceflinger-594 ( 594) [000] d..3   538.784868: sugov_set_iowait_boost: doing iow boost
   2861 surfaceflinger-594 ( 594) [000] d..3   538.784899: sugov_set_iowait_boost: doing iow boost
   2862 surfaceflinger-594 ( 594) [000] d..3   538.784911: sched_switch: prev_comm=surfaceflinger prev_pid=594 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2863           <idle>-0     (-----) [000] d..2   538.784944: cpu_idle: state=0 cpu_id=0
   2864 composer (a] 2.1-se-596   (  596) [001] ...1   538.784969: tracing_mark_write: B|596|HWCSession::PresentDisplay::
   2865 composer (a] 2.1-se-596   (  596) [001] ...1   538.785024: tracing_mark_write: B|596|HWDevice::Commit::
   2866 composer (a] 2.1-se-596   (  596) [001] d..4   538.785292: sched_wakeup: comm=mdss_fb0 pid=3660 prio=83 target_cpu=000
   2867           <idle>-0     (-----) [000] .n.2   538.785297: cpu_idle: state=4294967295 cpu_id=0
   2868           <idle>-0     (-----) [000] d..3   538.785313: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=mdss_fb0 next_pid=3660 next_prio=83
   2869 composer (a] 2.1-se-596   (  596) [001] ...1   538.785331: tracing_mark_write: E
   2870 composer (a] 2.1-se-596   (  596) [001] ...1   538.785395: tracing_mark_write: E
   2871 composer (a] 2.1-se-596   (  596) [001] d..4   538.785559: sched_wakeup: comm=surfaceflinger pid=594 prio=98 target_cpu=002
   2872           <idle>-0     (-----) [002] .n.2   538.785565: cpu_idle: state=4294967295 cpu_id=2
   2873           <idle>-0     (-----) [002] d..3   538.785586: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=594 next_prio=98
   2874 composer (a] 2.1-se-596   (  596) [001] d..3   538.785655: sugov_set_iowait_boost: doing iow boost
   2875 composer (a] 2.1-se-596   (  596) [001] d..3   538.785681: sugov_set_iowait_boost: doing iow boost
   2876 composer (a] 2.1-se-596   (  596) [001] d..3   538.785693: sched_switch: prev_comm=composer (a] 2.1-se prev_pid=596 prev_prio=97 prev_state=S ==> next_comm=Binder:1118_7 next_pid=1846 next_prio=120
   2877 surfaceflinger-594 ( 594) [002] ...1   538.785703: tracing_mark_write: E
   2878 Binder:1118_7-1846  ( 1118) [001] d..5   538.785768: sugov_set_iowait_boost: doing iow boost
   2879 surfaceflinger-594 ( 594) [002] ...1   538.785772: tracing_mark_write: B|594|wait
   2880 Binder:1118_7-1846  ( 1118) [001] d..5   538.785782: sched_wakeup: comm=power (a] 1.1-servi pid=704 prio=120 target_cpu=001
   2881 surfaceflinger-594 ( 594) [002] ...1   538.785796: tracing_mark_write: E
   2882 <3660>-3660  (-----) [000] ...1   538.785817: clock_set_rate: cnoc_a_clk state=80000000 cpu_id=0
   2883 surfaceflinger-594 ( 594) [002] ...1   538.785823: tracing_mark_write: E
   2884 surfaceflinger-594 ( 594) [002] ...1   538.785832: tracing_mark_write: E
   2885 Binder:1118_7-1846  ( 1118) [001] d..3   538.785848: sched_switch: prev_comm=Binder:1118_7 prev_pid=1846 prev_prio=120 prev_state=S ==> next_comm=power (a] 1.1-servi next_pid=704 next_prio=120
   2886 surfaceflinger-594 ( 594) [002] ...1   538.785850: tracing_mark_write: B|594|postComposition
   2887 surfaceflinger-594 ( 594) [002] ...1   538.785873: tracing_mark_write: B|594|releaseBuffer
   2888 surfaceflinger-594 ( 594) [002] ...2   538.785897: tracing_mark_write: B|594|com.google.android.youtube/com.google.android.apps.youtube.app.WatchWhileActivity#0: 1
   2889 surfaceflinger-594 ( 594) [002] ...1   538.785905: tracing_mark_write: E
   2890 <3660>-3660  (-----) [000] d..7   538.785936: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2891 <3660>-3660  (-----) [000] d..3   538.785955: sugov_set_iowait_boost: doing iow boost
   2892 <3660>-3660  (-----) [000] d..3   538.785974: sugov_set_iowait_boost: doing iow boost
   2893 power (a] 1.1-servi-704   (  704) [001] d..4   538.785978: sched_wakeup: comm=Binder:1118_7 pid=1846 prio=120 target_cpu=001
   2894 surfaceflinger-594 ( 594) [002] ...1   538.785992: tracing_mark_write: E
   2895 <3660>-3660  (-----) [000] d..3   538.786004: sugov_set_iowait_boost: doing iow boost
   2896 <3660>-3660  (-----) [000] d..3   538.786015: sched_switch: prev_comm=mdss_fb0 prev_pid=3660 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2897           <idle>-0     (-----) [000] dnh4   538.786042: sched_wakeup: comm=mdss_fb0 pid=3660 prio=83 target_cpu=000
   2898           <idle>-0     (-----) [005] ...2   538.786047: cpu_idle: state=4294967295 cpu_id=5
   2899           <idle>-0     (-----) [005] d..2   538.786055: cpu_idle: state=0 cpu_id=5
   2900 power (a] 1.1-servi-704   (  704) [001] d..3   538.786059: sched_switch: prev_comm=power (a] 1.1-servi prev_pid=704 prev_prio=120 prev_state=S ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2901           <idle>-0     (-----) [000] d..3   538.786064: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=mdss_fb0 next_pid=3660 next_prio=83
   2902 <3660>-3660  (-----) [000] ...1   538.786089: clock_set_rate: ahb_clk_src state=80800000 cpu_id=0
   2903 smem_native_rpm-87    (   87) [001] d..3   538.786102: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=Binder:1118_7 next_pid=1846 next_prio=120
   2904 surfaceflinger-594 ( 594) [002] ...1   538.786187: tracing_mark_write: E
   2905 <3660>-3660  (-----) [000] d..7   538.786189: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=001
   2906 <3660>-3660  (-----) [000] d..3   538.786206: sugov_set_iowait_boost: doing iow boost
   2907 <3660>-3660  (-----) [000] d..3   538.786222: sugov_set_iowait_boost: doing iow boost
   2908 surfaceflinger-594 ( 594) [002] d..4   538.786246: sched_wakeup: comm=rcuop/2 pid=28 prio=120 target_cpu=001
   2909 <3660>-3660  (-----) [000] d..3   538.786251: sugov_set_iowait_boost: doing iow boost
   2910 <3660>-3660  (-----) [000] d..3   538.786261: sched_switch: prev_comm=mdss_fb0 prev_pid=3660 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
   2911 Binder:1118_7-1846  ( 1118) [001] d..3   538.786272: sched_switch: prev_comm=Binder:1118_7 prev_pid=1846 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=28 next_prio=120
   2912           <idle>-0     (-----) [000] dnh4   538.786286: sched_wakeup: comm=mdss_fb0 pid=3660 prio=83 target_cpu=000
   2913 surfaceflinger-594 ( 594) [002] ...1   538.786288: tracing_mark_write: E
   2914           <idle>-0     (-----) [005] ...2   538.786291: cpu_idle: state=4294967295 cpu_id=5
   2915 rcuop/2-28    (   28) [001] d..3   538.786293: sugov_set_iowait_boost: doing iow boost
   2916 surfaceflinger-594 ( 594) [002] ...1   538.786298: tracing_mark_write: E
   2917           <idle>-0     (-----) [005] d..2   538.786299: cpu_idle: state=0 cpu_id=5
   2918           <idle>-0     (-----) [000] d..3   538.786308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=mdss_fb0 next_pid=3660 next_prio=83
   2919 rcuop/2-28    (   28) [001] d..3   538.786310: sched_switch: prev_comm=rcuop/2 prev_pid=28 prev_prio=120 prev_state=S ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2920 surfaceflinger-594 ( 594) [002] d..3   538.786334: sugov_set_iowait_boost: doing iow boost
   2921 surfaceflinger-594 ( 594) [002] d..3   538.786355: sugov_set_iowait_boost: doing iow boost
   2922 smem_native_rpm-87    (   87) [001] d..3   538.786368: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2923 surfaceflinger-594 ( 594) [002] d..3   538.786388: sugov_set_iowait_boost: doing iow boost
   2924 surfaceflinger-594 ( 594) [002] d..3   538.786403: sched_switch: prev_comm=surfaceflinger prev_pid=594 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   2925           <idle>-0     (-----) [001] d..2   538.786425: cpu_idle: state=0 cpu_id=1
   2926 <3660>-3660  (-----) [000] d..7   538.786447: sugov_set_iowait_boost: doing iow boost
   2927           <idle>-0     (-----) [002] d..2   538.786452: cpu_idle: state=0 cpu_id=2
   2928 <3660>-3660  (-----) [000] d..7   538.786459: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=000
   2929 <3660>-3660  (-----) [000] d..3   538.786474: sugov_set_iowait_boost: doing iow boost
   2930 <3660>-3660  (-----) [000] d..3   538.786494: sched_switch: prev_comm=mdss_fb0 prev_pid=3660 prev_prio=83 prev_state=D ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2931           <idle>-0     (-----) [005] ...2   538.786526: cpu_idle: state=4294967295 cpu_id=5
   2932           <idle>-0     (-----) [005] d..2   538.786533: cpu_idle: state=0 cpu_id=5
   2933 smem_native_rpm-87    (   87) [000] dnh3   538.786534: sched_wakeup: comm=mdss_fb0 pid=3660 prio=83 target_cpu=000
   2934 smem_native_rpm-87    (   87) [000] d..3   538.786552: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=R+ ==> next_comm=mdss_fb0 next_pid=3660 next_prio=83
   2935 <3660>-3660  (-----) [000] d.h2   538.786604: sugov_set_iowait_boost: doing iow boost
   2936 <3660>-3660  (-----) [000] d.h4   538.786696: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=001
   2937           <idle>-0     (-----) [001] .n.2   538.786703: cpu_idle: state=4294967295 cpu_id=1
   2938           <idle>-0     (-----) [001] d..3   538.786733: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2939 <3660>-3660  (-----) [000] d.s3   538.786763: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   2940 kworker/u16:11-682   (  682) [001] dn.5   538.786776: sched_wakeup: comm=kworker/1:1 pid=534 prio=120 target_cpu=001
   2941 kworker/u16:11-682   (  682) [001] d..3   538.786792: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=534 next_prio=120
   2942 kworker/1:1-534 ( 534) [001] d..3   538.786834: sched_switch: prev_comm=kworker/1:1 prev_pid=534 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   2943 kworker/u16:11-682   (  682) [001] d..3   538.786878: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   2944           <idle>-0     (-----) [001] d..2   538.786915: cpu_idle: state=0 cpu_id=1
   2945 <3660>-3660  (-----) [000] ...1   538.789497: clock_set_rate: cnoc_a_clk state=19200000 cpu_id=0
   2946 <3660>-3660  (-----) [000] d..3   538.789569: sugov_set_iowait_boost: doing iow boost
   2947 <3660>-3660  (-----) [000] d..3   538.789590: sugov_set_iowait_boost: doing iow boost
   2948 <3660>-3660  (-----) [000] d..3   538.789602: sched_switch: prev_comm=mdss_fb0 prev_pid=3660 prev_prio=83 prev_state=D ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   2949 smem_native_rpm-87    (   87) [000] dn.7   538.789666: sched_wakeup: comm=mdss_fb0 pid=3660 prio=83 target_cpu=000
   2950           <idle>-0     (-----) [005] ...2   538.789710: cpu_idle: state=4294967295 cpu_id=5
   2951 smem_native_rpm-87    (   87) [000] d..3   538.789715: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=R+ ==> next_comm=mdss_fb0 next_pid=3660 next_prio=83
   2952           <idle>-0     (-----) [005] d..2   538.789718: cpu_idle: state=0 cpu_id=5
   2953 <3660>-3660  (-----) [000] ...1   538.789733: clock_set_rate: ahb_clk_src state=19200000 cpu_id=0
   2954 <3660>-3660  (-----) [000] d.h3   538.789971: sugov_set_iowait_boost: doing iow boost
   2955           <idle>-0     (-----) [005] ...2   538.790058: cpu_idle: state=4294967295 cpu_id=5
   2956           <idle>-0     (-----) [005] d..2   538.790065: cpu_idle: state=0 cpu_id=5
   2957           <idle>-0     (-----) [005] ...2   538.790251: cpu_idle: state=4294967295 cpu_id=5
   2958           <idle>-0     (-----) [005] d..2   538.790259: cpu_idle: state=0 cpu_id=5
   2959 <3660>-3660  (-----) [000] ...1   538.790259: clock_set_rate: mmss_mdss_esc0_clk state=19200000 cpu_id=0
   2960 <3660>-3660  (-----) [000] ...1   538.790271: clock_set_rate: esc0_clk_src state=19200000 cpu_id=0
   2961 <3660>-3660  (-----) [000] ...1   538.790287: clock_set_rate: mmss_mdss_byte0_clk state=88863660 cpu_id=0
   2962 <3660>-3660  (-----) [000] ...1   538.790295: clock_set_rate: byte0_clk_src state=88863660 cpu_id=0
   2963 <3660>-3660  (-----) [000] ...1   538.790301: clock_set_rate: ext_byte0_clk_src state=88863660 cpu_id=0
   2964 <3660>-3660  (-----) [000] ...1   538.790307: clock_set_rate: dsi0pll_byteclk_mux state=88863660 cpu_id=0
   2965 <3660>-3660  (-----) [000] ...1   538.790312: clock_set_rate: dsi0pll_byteclk_src state=88863660 cpu_id=0
   2966 <3660>-3660  (-----) [000] ...1   538.790322: clock_set_rate: dsi0pll_bitclk_src state=710909280 cpu_id=0
   2967 <3660>-3660  (-----) [000] ...1   538.790329: clock_set_rate: dsi0pll_vco_clk state=1421818560 cpu_id=0
   2968 <3660>-3660  (-----) [000] ...1   538.790401: clock_set_rate: mmss_mdss_pclk0_clk state=118484880 cpu_id=0
   2969 <3660>-3660  (-----) [000] ...1   538.790409: clock_set_rate: pclk0_clk_src state=118484880 cpu_id=0
   2970 <3660>-3660  (-----) [000] ...1   538.790450: clock_set_rate: ext_pclk0_clk_src state=118484880 cpu_id=0
   2971 <3660>-3660  (-----) [000] ...1   538.790455: clock_set_rate: dsi0pll_pclk_mux state=118484880 cpu_id=0
   2972 <3660>-3660  (-----) [000] ...1   538.790460: clock_set_rate: dsi0pll_pclk_src state=118484880 cpu_id=0
   2973 <3660>-3660  (-----) [000] ...1   538.790470: clock_set_rate: dsi0pll_pclk_src_mux state=355454640 cpu_id=0
   2974 <3660>-3660  (-----) [000] ...1   538.790477: clock_set_rate: dsi0pll_post_bit_div state=355454640 cpu_id=0
   2975 <3660>-3660  (-----) [000] ...1   538.790505: clock_set_rate: mmss_mdss_byte0_intf_clk state=44431830 cpu_id=0
   2976 <3660>-3660  (-----) [000] ...1   538.790512: clock_set_rate: mmss_mdss_byte0_intf_div_clk state=44431830 cpu_id=0
   2977           <idle>-0     (-----) [005] ...2   538.790550: cpu_idle: state=4294967295 cpu_id=5
   2978           <idle>-0     (-----) [005] d..2   538.790555: cpu_idle: state=0 cpu_id=5
   2979 <3660>-3660  (-----) [000] ...1   538.790827: clock_set_rate: mmss_mdss_esc1_clk state=19200000 cpu_id=0
   2980 <3660>-3660  (-----) [000] ...1   538.790836: clock_set_rate: esc1_clk_src state=19200000 cpu_id=0
   2981 <3660>-3660  (-----) [000] ...1   538.790851: clock_set_rate: mmss_mdss_byte1_clk state=88863660 cpu_id=0
   2982 <3660>-3660  (-----) [000] ...1   538.790858: clock_set_rate: byte1_clk_src state=88863660 cpu_id=0
   2983 <3660>-3660  (-----) [000] ...1   538.790862: clock_set_rate: ext_byte0_clk_src state=88863660 cpu_id=0
   2984 <3660>-3660  (-----) [000] ...1   538.790866: clock_set_rate: dsi0pll_byteclk_mux state=88863660 cpu_id=0
   2985 <3660>-3660  (-----) [000] ...1   538.790873: clock_set_rate: dsi0pll_byteclk_src state=88863660 cpu_id=0
   2986 <3660>-3660  (-----) [000] ...1   538.790880: clock_set_rate: dsi0pll_bitclk_src state=710909280 cpu_id=0
   2987 <3660>-3660  (-----) [000] ...1   538.790885: clock_set_rate: dsi0pll_vco_clk state=1421818560 cpu_id=0
   2988 <3660>-3660  (-----) [000] ...1   538.790904: clock_set_rate: mmss_mdss_pclk1_clk state=118484880 cpu_id=0
   2989 <3660>-3660  (-----) [000] ...1   538.790910: clock_set_rate: pclk1_clk_src state=118484880 cpu_id=0
   2990 <3660>-3660  (-----) [000] ...1   538.790945: clock_set_rate: ext_pclk0_clk_src state=118484880 cpu_id=0
   2991 <3660>-3660  (-----) [000] ...1   538.790949: clock_set_rate: dsi0pll_pclk_mux state=118484880 cpu_id=0
   2992 <3660>-3660  (-----) [000] ...1   538.790953: clock_set_rate: dsi0pll_pclk_src state=118484880 cpu_id=0
   2993 <3660>-3660  (-----) [000] ...1   538.790962: clock_set_rate: dsi0pll_pclk_src_mux state=355454640 cpu_id=0
   2994 <3660>-3660  (-----) [000] ...1   538.790968: clock_set_rate: dsi0pll_post_bit_div state=355454640 cpu_id=0
   2995 <3660>-3660  (-----) [000] ...1   538.790993: clock_set_rate: mmss_mdss_byte1_intf_clk state=44431830 cpu_id=0
   2996 <3660>-3660  (-----) [000] ...1   538.791001: clock_set_rate: mmss_mdss_byte1_intf_div_clk state=44431830 cpu_id=0
   2997 <3660>-3660  (-----) [000] d..3   538.791222: sugov_set_iowait_boost: doing iow boost
   2998 <3660>-3660  (-----) [000] d..3   538.791244: sugov_set_iowait_boost: doing iow boost
   2999 <3660>-3660  (-----) [000] d..3   538.791255: sched_switch: prev_comm=mdss_fb0 prev_pid=3660 prev_prio=83 prev_state=D ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   3000 smem_native_rpm-87    (   87) [000] d..3   538.791305: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   3001 rcu_preempt-7     (    7) [000] d..5   538.791354: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
   3002 rcu_preempt-7     (    7) [000] d..3   538.791385: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
   3003 rcuop/0-10    (   10) [000] d..3   538.791441: 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
   3004           <idle>-0     (-----) [000] d..2   538.791487: cpu_idle: state=0 cpu_id=0
   3005           <idle>-0     (-----) [000] d.s4   538.796632: sugov_set_iowait_boost: doing iow boost
   3006           <idle>-0     (-----) [000] dns4   538.796645: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
   3007           <idle>-0     (-----) [000] .n.2   538.796681: cpu_idle: state=4294967295 cpu_id=0
   3008           <idle>-0     (-----) [000] d..3   538.796705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
   3009 rcu_preempt-7     (    7) [000] d..5   538.796776: sched_wakeup: comm=rcuop/2 pid=28 prio=120 target_cpu=001
   3010           <idle>-0     (-----) [001] .n.2   538.796782: cpu_idle: state=4294967295 cpu_id=1
   3011           <idle>-0     (-----) [001] d..3   538.796808: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=28 next_prio=120
   3012 rcu_preempt-7     (    7) [000] d..3   538.796818: 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
   3013           <idle>-0     (-----) [000] d..2   538.796853: cpu_idle: state=0 cpu_id=0
   3014 rcuop/2-28    (   28) [001] d..3   538.796860: sched_switch: prev_comm=rcuop/2 prev_pid=28 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   3015           <idle>-0     (-----) [001] d..2   538.796896: cpu_idle: state=0 cpu_id=1
   3016           <idle>-0     (-----) [000] ...2   538.797304: cpu_idle: state=4294967295 cpu_id=0
   3017           <idle>-0     (-----) [000] d..2   538.797315: cpu_idle: state=0 cpu_id=0
   3018           <idle>-0     (-----) [000] dnh7   538.797416: sched_wakeup: comm=vsync_retire_wo pid=182 prio=94 target_cpu=000
   3019           <idle>-0     (-----) [000] dnh8   538.797438: sugov_set_iowait_boost: doing iow boost
   3020           <idle>-0     (-----) [000] dnh8   538.797449: sched_wakeup: comm=kworker/0:5 pid=1633 prio=120 target_cpu=000
   3021           <idle>-0     (-----) [000] .n.2   538.797482: cpu_idle: state=4294967295 cpu_id=0
   3022           <idle>-0     (-----) [000] d..3   538.797502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=vsync_retire_wo next_pid=182 next_prio=94
   3023 vsync_retire_wo-182 ( 182) [000] d..3   538.797536: sched_switch: prev_comm=vsync_retire_wo prev_pid=182 prev_prio=94 prev_state=S ==> next_comm=kworker/0:5 next_pid=1633 next_prio=120
   3024 kworker/0:5-1633 ( 1633) [000] d..5   538.797613: sched_wakeup: comm=SDM_EventThread pid=611 prio=111 target_cpu=002
   3025           <idle>-0     (-----) [002] .n.2   538.797620: cpu_idle: state=4294967295 cpu_id=2
   3026           <idle>-0     (-----) [002] d..3   538.797648: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=611 next_prio=111
   3027 kworker/0:5-1633 ( 1633) [000] d..3   538.797668: sched_switch: prev_comm=kworker/0:5 prev_pid=1633 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   3028           <idle>-0     (-----) [000] d..2   538.797701: cpu_idle: state=0 cpu_id=0
   3029 SDM_EventThread-611   (  596) [002] d..5   538.797801: sched_wakeup: comm=HwBinder:594_1 pid=612 prio=120 target_cpu=000
   3030           <idle>-0     (-----) [000] .n.2   538.797806: cpu_idle: state=4294967295 cpu_id=0
   3031           <idle>-0     (-----) [000] d..3   538.797828: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:594_1 next_pid=612 next_prio=120
   3032 SDM_EventThread-611   (  596) [002] d..3   538.797908: sched_switch: prev_comm=SDM_EventThread prev_pid=611 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
   3033 HwBinder:594_1-612   (  594) [000] ...1   538.797933: tracing_mark_write: C|594|HW_VSYNC_0|0
   3034           <idle>-0     (-----) [002] d..2   538.797949: cpu_idle: state=0 cpu_id=2
   3035 HwBinder:594_1-612   (  594) [000] d.h3   538.798029: sched_wakeup: comm=DispSync pid=615 prio=97 target_cpu=001
   3036           <idle>-0     (-----) [001] .n.2   538.798033: cpu_idle: state=4294967295 cpu_id=1
   3037           <idle>-0     (-----) [001] d..3   538.798052: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=615 next_prio=97
   3038 HwBinder:594_1-612   (  594) [000] d..3   538.798097: sched_switch: prev_comm=HwBinder:594_1 prev_pid=612 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   3039 DispSync-615   (  594) [001] ...1   538.798117: tracing_mark_write: C|594|VSYNC-sf|0
   3040           <idle>-0     (-----) [000] d..2   538.798138: cpu_idle: state=0 cpu_id=0
   3041 DispSync-615   (  594) [001] d..3   538.798164: sched_wakeup: comm=EventThread pid=629 prio=97 target_cpu=000
   3042           <idle>-0     (-----) [000] .n.2   538.798170: cpu_idle: state=4294967295 cpu_id=0
   3043           <idle>-0     (-----) [000] d..3   538.798191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=EventThread next_pid=629 next_prio=97
   3044 DispSync-615   (  594) [001] d..3   538.798196: sugov_set_iowait_boost: doing iow boost
   3045 DispSync-615   (  594) [001] d..3   538.798215: sugov_set_iowait_boost: doing iow boost
   3046 DispSync-615   (  594) [001] d..3   538.798243: sugov_set_iowait_boost: doing iow boost
   3047 DispSync-615   (  594) [001] d..3   538.798254: sched_switch: prev_comm=DispSync prev_pid=615 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   3048 EventThread-629   (  594) [000] d..3   538.798285: sched_wakeup: comm=DispSync pid=615 prio=97 target_cpu=001
   3049           <idle>-0     (-----) [001] d..3   538.798300: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=615 next_prio=97
   3050 EventThread-629   (  594) [000] d..3   538.798306: sugov_set_iowait_boost: doing iow boost
   3051 DispSync-615   (  594) [001] d..3   538.798323: sugov_set_iowait_boost: doing iow boost
   3052 EventThread-629   (  594) [000] d..3   538.798329: sugov_set_iowait_boost: doing iow boost
   3053 EventThread-629   (  594) [000] d..3   538.798357: sugov_set_iowait_boost: doing iow boost
   3054 DispSync-615   (  594) [001] d..3   538.798363: sugov_set_iowait_boost: doing iow boost
   3055 EventThread-629   (  594) [000] d..3   538.798368: sched_switch: prev_comm=EventThread prev_pid=629 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   3056 DispSync-615   (  594) [001] d..3   538.798373: sched_switch: prev_comm=DispSync prev_pid=615 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
   3057           <idle>-0     (-----) [000] d..2   538.798406: cpu_idle: state=0 cpu_id=0
   3058           <idle>-0     (-----) [001] d..2   538.798411: cpu_idle: state=0 cpu_id=1
   3059           <idle>-0     (-----) [004] d.s3   538.799965: sugov_set_iowait_boost: skipping iow boost
   3060           <idle>-0     (-----) [001] d.h3   538.799975: sugov_set_iowait_boost: doing iow boost
   3061           <idle>-0     (-----) [004] dnH6   538.799986: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   3062           <idle>-0     (-----) [001] dnh3   538.799987: sched_wakeup: comm=kworker/u16:11 pid=682 prio=120 target_cpu=001
   3063           <idle>-0     (-----) [001] .n.2   538.800001: cpu_idle: state=4294967295 cpu_id=1
   3064           <idle>-0     (-----) [004] .n.2   538.800005: cpu_idle: state=4294967295 cpu_id=4
   3065           <idle>-0     (-----) [004] d..3   538.800017: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   3066           <idle>-0     (-----) [001] d..3   538.800025: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   3067 sugov:4-5860  ( 5860) [004] ...1   538.800033: clock_set_rate: perfcl_clk state=300000000 cpu_id=4
   3068 sugov:4-5860  ( 5860) [004] ...1   538.800042: cpu_frequency: state=300000 cpu_id=4
   3069 sugov:4-5860  ( 5860) [004] ...1   538.800056: cpu_frequency: state=300000 cpu_id=5
   3070 sugov:4-5860  ( 5860) [004] ...1   538.800064: cpu_frequency: state=300000 cpu_id=6
   3071 sugov:4-5860  ( 5860) [004] ...1   538.800071: cpu_frequency: state=300000 cpu_id=7
   3072 sugov:4-5860  ( 5860) [004] d..3   538.800083: sugov_set_iowait_boost: skipping iow boost
   3073 sugov:4-5860  ( 5860) [004] d..3   538.800112: sugov_set_iowait_boost: skipping iow boost
   3074 sugov:4-5860  ( 5860) [004] d..3   538.800118: sched_switch: prev_comm=sugov:4 prev_pid=5860 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
   3075           <idle>-0     (-----) [004] d..2   538.800149: cpu_idle: state=0 cpu_id=4
   3076           <idle>-0     (-----) [004] d.h3   538.802159: sugov_set_iowait_boost: skipping iow boost
   3077           <idle>-0     (-----) [004] dnh3   538.802167: sched_wakeup: comm=kworker/u16:7 pid=347 prio=120 target_cpu=004
   3078           <idle>-0     (-----) [004] .n.2   538.802175: cpu_idle: state=4294967295 cpu_id=4
   3079 kworker/u16:11-682   (  682) [001] d..5   538.802179: sugov_set_iowait_boost: doing iow boost
   3080           <idle>-0     (-----) [004] d..3   538.802190: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:7 next_pid=347 next_prio=120
   3081 kworker/u16:11-682   (  682) [001] dn.5   538.802200: sched_wakeup: comm=kworker/1:1H pid=1175 prio=100 target_cpu=001
   3082 kworker/u16:11-682   (  682) [001] d..3   538.802220: sched_switch: prev_comm=kworker/u16:11 prev_pid=682 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1H next_pid=1175 next_prio=100
   3083 kworker/1:1H-1175 ( 1175) [001] d..3   538.802266: sched_switch: prev_comm=kworker/1:1H prev_pid=1175 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:11 next_pid=682 next_prio=120
   3084 kworker/u16:7-347 ( 347) [004] ...1   538.802298: clock_set_rate: aggre1_noc_clk state=277144000 cpu_id=4
   3085           <idle>-0     (-----) [000] d.h3   538.802409: sugov_set_iowait_boost: doing iow boost
   3086           <idle>-0     (-----) [000] dnh3   538.802422: sched_wakeup: comm=smem_native_rpm pid=87 prio=120 target_cpu=000
   3087 kworker/u16:7-347 ( 347) [004] d..3   538.802424: sched_switch: prev_comm=kworker/u16:7 prev_pid=347 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
   3088           <idle>-0     (-----) [000] .n.2   538.802434: cpu_idle: state=4294967295 cpu_id=0
   3089           <idle>-0     (-----) [005] d.h4   538.802446: sugov_set_iowait_boost: skipping iow boost
   3090           <idle>-0     (-----) [004] d..2   538.802452: cpu_idle: state=0 cpu_id=4
   3091           <idle>-0     (-----) [005] dnh4   538.802456: sched_wakeup: comm=netd pid=7669 prio=120 target_cpu=005
   3092           <idle>-0     (-----) [000] d..3   538.802462: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_rpm next_pid=87 next_prio=120
   3093           <idle>-0     (-----) [005] dnh4   538.802476: sched_wakeup: comm=ChromiumNet pid=7502 prio=130 target_cpu=004
   3094           <idle>-0     (-----) [004] .n.2   538.802482: cpu_idle: state=4294967295 cpu_id=4
   3095           <idle>-0     (-----) [004] d..3   538.802498: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ChromiumNet next_pid=7502 next_prio=130
   3096 ChromiumNet-7502 ( 7459) [004] d.h2   538.802562: sched_blocked_reason: pid=347 iowait=0 caller=msm_rpm_wait_for_ack+0x68/0x124
   3097 ChromiumNet-7502 ( 7459) [004] d.h2   538.802575: sched_wakeup: comm=kworker/u16:7 pid=347 prio=120 target_cpu=004
   3098           <idle>-0     (-----) [005] .n.2   538.802591: cpu_idle: state=4294967295 cpu_id=5
   3099           <idle>-0     (-----) [005] d..3   538.802611: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=netd next_pid=7669 next_prio=120
   3100 smem_native_rpm-87    (   87) [000] d..3   538.802623: sched_switch: prev_comm=smem_native_rpm prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
   3101           <idle>-0     (-----) [000] d..2   538.802663: cpu_idle: state=0 cpu_id=0
   3102 ChromiumNet-7502 ( 7459) [004] d..3   538.802671: sugov_set_iowait_boost: skipping iow boost
   3103 ChromiumNet-7502 ( 7459) [004] d..3   538.802691: sched_switch: prev_comm=ChromiumNet prev_pid=7502 prev_prio=130 prev_state=S ==> next_comm=kworker/u16:7 next_pid=347 next_prio=120
   3104 kworker/u16:7-347 ( 347) [004] dnh6   538.802714: sched_wakeup: comm=sugov:4 pid=5860 prio=49 target_cpu=004
   3105 kworker/u16:7-347 ( 347) [004] d..3   538.802729: sched_switch: prev_comm=kworker/u16:7 prev_pid=347 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=5860 next_prio=49
   3106   </script>
   3107   <script class="trace-data" type="application/text">
   3108 {"traceEvents": [{"category": "process_argv", "name": "process_argv", "args": {"argv": ["/home/joelaf/repo/lisa/tools/catapult/systrace/systrace/run_systrace.py", "-e", "HT73D1900124", "-o", "/home/joelaf/repo/lisa/results/yt_schedutil_systrace_1.2_bigsoff2_pelt_tmpdelete/trace.html", "gfx", "view", "sched", "freq", "idle"]}, "pid": 28239, "ts": 186111232854.99402, "tid": 140238545307392, "ph": "M"}, {"category": "python", "name": "clock_sync", "args": {"issue_ts": 186141196782.39398, "sync_id": "f822ceec-f9a0-420e-a46a-f419496a772a"}, "pid": 28239, "ts": 186141204927.954, "tid": 140238651729728, "ph": "c"}], "metadata": {"clock-domain": "SYSTRACE"}}  </script>
   3109 <!-- END TRACE -->
   3110 </body>
   3111 </html>
   3112