Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 895961 Details for
Bug 1003967
powertop can't generate tuned profile
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
powertop.html
powertop.html (text/html), 30.84 KB, created by
Dominik Grafenhofer
on 2014-05-15 14:30:58 UTC
(
hide
)
Description:
powertop.html
Filename:
MIME Type:
Creator:
Dominik Grafenhofer
Created:
2014-05-15 14:30:58 UTC
Size:
30.84 KB
patch
obsolete
><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> ><html> ><head> ><title>PowerTOP report</title> ><meta http-equiv="content-type" content="text/html;charset=utf-8"> ><script type='text/javascript'> > >var powertop = { > blocks: { > system: 'System Info', > summary: 'Summary', > cpuidle: 'CPU Idle', > cpufreq: 'CPU Frequency', > software: 'Software Info', > device: 'Device Info', > tuning: 'Tuning' > }, > cadd: function(idx, c){ > var el = document.getElementById(idx); > if (el) { > var cn = el.className; > if (cn.indexOf(c) != -1) > return; > cn += ' ' + c; > el.className = cn; > } > }, > crm: function(id, c){ > var el = document.getElementById(id); > if (el) { > var cn = el.className > while (cn.indexOf(' ' + c) != -1) > cn = cn.replace(' ' + c,''); > el.className = cn; > } > }, > newbutton: function(id, txt) { > var x = document.createElement('div'); > x.id = id + '_button'; > x.className = 'nav_button'; > x.textContent = txt; > x.innerText = txt; > x.onclick = function() { powertop.toggle(id); }; > return x; > }, > setupbuttons: function() { > var t = document.getElementById('top'); > if (t) { > for (var b in powertop.blocks) { > t.appendChild(powertop.newbutton(b, powertop.blocks[b])); > } > t.appendChild(powertop.newbutton('all', 'All')); > } > }, > toggle: function(b) { > powertop.baseall(); > if (b == 'all') { > for (var c in powertop.blocks) { > powertop.crm(c, 'hide'); > } > } else { > powertop.crm(b, 'hide'); > } > powertop.cadd(b + '_button', 'pressed'); > }, > baseall: function() { > for (var b in powertop.blocks) { > powertop.cadd(b, 'hide'); > powertop.crm(b + '_button', 'pressed'); > } > powertop.cadd('all', 'hide'); > powertop.crm('all_button', 'pressed'); > }, > onload: function() { > powertop.setupbuttons(); > powertop.toggle('summary'); > } >} > ></script> ><style type='text/css'> >table >{ > background-color: #F8F8F8; > color: black; >} > >th >{ > text-align: right; >} >th.device >{ > text-align: left; >} >th.process >{ > text-align: left; >} > >th.tunable >{ > text-align: left; >} > >td.package_odd >{ > background-color: #E0ffE0; > color: black; > text-align: right; >} >td.package_even >{ > background-color: #F0ffF0; > color: black; > text-align: right; >} > >td.core_even >{ > background-color: #F0ffF0; > color: black; > text-align: right; >} > >td.core_odd >{ > background-color: #E0E0ff; > color: black; > text-align: right; >} > >td.cpu_even_freq >{ > background-color: #E2E2E2; > color: black; >} > >td.cpu_odd_freq >{ > background-color: #F4f4F4; > color: black; >} > >td.cpu_even_even >{ > background-color: #E0E0f0; > color: black; > text-align: right; >} > >td.cpu_even_odd >{ > background-color: #F0f0F0; > color: black; > text-align: right; >} >td.cpu_odd_even >{ > background-color: #E0E0ff; > color: black; > text-align: right; >} > >td.cpu_odd_odd >{ > background-color: #F0ffF0; > color: black; > text-align: right; >} > >tr.device_odd >{ > background-color: #E0E0E0; > color: black; >} >tr.device_even >{ > background-color: #F0f0F0; > color: black; >} > >tr.process_odd >{ > background-color: #E0E0E0; > color: black; >} >tr.process_even >{ > background-color: #F0f0F0; > color: black; >} > >td.device_power >{ > text-align: right; >} > >td.process_power >{ > text-align: right; >} > >td.device_util >{ > text-align: right; >} > >tr.tunable_odd >{ > background-color: #E0E0E0; > color: black; >} >tr.tunable_even >{ > background-color: #F0f0F0; > color: black; >} > >tr.tunable_odd_bad >{ > background-color: #FFE0E0; > color: black; >} >tr.tunable_even_bad >{ > background-color: #FFf0F0; > color: black; >} > >tr.system_odd >{ > background-color: #E0E0E0; > color: black; >} >tr.system_even >{ > background-color: #F0f0F0; > color: black; >} > >tr.device_odd >{ > background-color: #E0E0E0; > color: black; >} >tr.device_even >{ > background-color: #F0f0F0; > color: black; >} > >body { > background-color: #eee; /* Background color */ > color: #222; /* Foreground color used for text */ > font-family: Helvetica; > font-size: 14px; > margin: 0; /* Amount of negative space around the > outside of the body */ > padding: 0; /* Amount of negative space around the > inside of the body */ >} >#top { > background-color: #ccc; > border-bottom: 1px solid #666; > color: #222; > display: block; > font-size: 20px; > font-weight: bold; > padding: 10px 0; > text-align: center; > text-decoration: none; > text-shadow: 0px 1px 1px #fff; > background-image: -webkit-gradient(linear, left top, left bottom, > from(#ccc), to(#999)); >} > > >#top div { > height: 30px; > font-weight: bold; > text-align: center; > color: white; > text-shadow: rgba(0,0,0,0.6) 0px -1px 1px; > line-height: 28px; > border-width:0px 8px 0px 8px; >} >#top div.nav_button { > display: inline; > cursor: pointer; > padding: 0.3em 0.5em; > margin: 0 0.2em; >} > >div.pressed { > background-color: #000000; > border: 1px solid #000000; > color: #000000; > border-radius: 8px; >} >div.hide { > display: none; >} ></style> ></head> > ><body onload='powertop.onload();'> ><div id='top'> ></div> > ><div id="system"><h2>System Information</h2> ><table> ><tr class="system_even"> > <td width="20%">PowerTOP Version</td> > <td>v2.5</td> ></tr> ><tr class="system_odd"> > <td>Kernel Version</td> > <td>Linux version 3.14.3-200.fc20.x86_64 (mockbuild@bkernel02) (gcc version 4.8.2 20131212 (Red Hat 4.8.2-7) (GCC) ) #1 SMP Tue May 6 19:00:18 UTC 2014</td> ></tr> ><tr class="system_even"> > <td>System Name</td> > <td>N_O_N_E</td> ></tr> ><tr class="system_odd"> > <td>CPU Information</td> > <td>N_O_N_E</td> ></tr> ><tr class="system_even"> > <td>OS Information</td> > <td>Fedora release 20 (Heisenbug)</td> ></tr> ></table> > ></div> > ><div id="summary"><h2>Power Consumption Summary</h2> ><p>235,3 wakeups/second, 2,7 GPU ops/second, 0,0 VFS ops/sec, 5,5 GFX wakes/sec and 3,9% CPU use</p> ><table width="100%"> ><tr> > <th width="10%">Usage</th> > <th width="10%">Events/s</th> > <th width="10%" class="process">Category</th> > <th class="process">Description</th> ></tr> ><tr class="process_odd"> > <td class="process_power">100,0%</td> > <td class="process_power"></td> > <td>Device</td> > <td>N_O_N_E</td> ></tr> ><tr class="process_even"> > <td class="process_power"> 0,3%</td> > <td class="process_power"> 88,0</td> > <td>Interrupt</td> > <td>N_O_N_E</td> ></tr> ></table> > ></div> > ><div id="cpuidle"><h2>Processor Idle state report</h2> ><table width="100%"> ><tr> > <th width="25%" colspan="2" class="package_header">Package 0</th> > <td width="2%"> </td> > <th width="25%" colspan="2" class="core_header">Core 0</th> > <td width="2%"> </td> > <th colspan="3" class="cpu_header">CPU 0</th> > <th colspan="3" class="cpu_header">CPU 1</th> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq"></td> > <td class="package_odd"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq"></td> > <td class="core_odd"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C0 active</td> > <td class="cpu_odd_even"> 1,1%</td> > <td class="cpu_odd_even"> </td> > <td class="cpu_odd_odd"> 0,1%</td> > <td class="cpu_odd_odd"> </td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq"></td> > <td class="package_even"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"></td> > <td class="core_even"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">POLL</td> > <td class="cpu_even_even"> 0,0%</td> > <td class="cpu_even_even"> 0,0 ms</td> > <td class="cpu_even_odd"> 0,0%</td> > <td class="cpu_even_odd"> 0,0 ms</td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq"></td> > <td class="package_odd"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq"></td> > <td class="core_odd"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C1E-IVB</td> > <td class="cpu_odd_even"> 0,0%</td> > <td class="cpu_odd_even"> 0,5 ms</td> > <td class="cpu_odd_odd"> 0,5%</td> > <td class="cpu_odd_odd"> 15,8 ms</td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq">C2 (pc2)</td> > <td class="package_even"> 1,1%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"></td> > <td class="core_even"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"></td> > <td class="cpu_even_even"></td> > <td class="cpu_even_even"></td> > <td class="cpu_even_odd"></td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq">C3 (pc3)</td> > <td class="package_odd"> 0,0%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C3 (cc3)</td> > <td class="core_odd"> 0,0%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C3-IVB</td> > <td class="cpu_odd_even"> 0,3%</td> > <td class="cpu_odd_even"> 8,6 ms</td> > <td class="cpu_odd_odd"> 0,0%</td> > <td class="cpu_odd_odd"> 0,2 ms</td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq">C6 (pc6)</td> > <td class="package_even"> 3,6%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">C6 (cc6)</td> > <td class="core_even"> 0,0%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">C6-IVB</td> > <td class="cpu_even_even"> 0,0%</td> > <td class="cpu_even_even"> 0,0 ms</td> > <td class="cpu_even_odd"> 0,0%</td> > <td class="cpu_even_odd"> 0,0 ms</td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq">C7 (pc7)</td> > <td class="package_odd"> 84,0%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C7 (cc7)</td> > <td class="core_odd"> 97,0%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C7-IVB</td> > <td class="cpu_odd_even"> 97,7%</td> > <td class="cpu_odd_even"> 39,9 ms</td> > <td class="cpu_odd_odd"> 99,1%</td> > <td class="cpu_odd_odd"> 54,5 ms</td> ></tr> ><tr> > <th colspan="2" class="package_header"> </th> > <td width="2%"> </td> > <th width="25%" colspan="2" class="core_header">Core 1</th> > <td width="2%"> </td> > <th colspan="3" class="cpu_header">CPU 2</th> > <th colspan="3" class="cpu_header">CPU 3</th> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq"></td> > <td class="core_odd"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C0 active</td> > <td class="cpu_odd_even"> 0,8%</td> > <td class="cpu_odd_even"> </td> > <td class="cpu_odd_odd"> 0,3%</td> > <td class="cpu_odd_odd"> </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"></td> > <td class="core_even"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">POLL</td> > <td class="cpu_even_even"> 0,0%</td> > <td class="cpu_even_even"> 0,0 ms</td> > <td class="cpu_even_odd"> 0,0%</td> > <td class="cpu_even_odd"> 0,0 ms</td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq"></td> > <td class="core_odd"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C1E-IVB</td> > <td class="cpu_odd_even"> 0,0%</td> > <td class="cpu_odd_even"> 0,2 ms</td> > <td class="cpu_odd_odd"> 0,0%</td> > <td class="cpu_odd_odd"> 0,0 ms</td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"></td> > <td class="core_even"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"></td> > <td class="cpu_even_even"></td> > <td class="cpu_even_even"></td> > <td class="cpu_even_odd"></td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C3 (cc3)</td> > <td class="core_odd"> 0,0%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C3-IVB</td> > <td class="cpu_odd_even"> 0,0%</td> > <td class="cpu_odd_even"> 0,3 ms</td> > <td class="cpu_odd_odd"> 0,0%</td> > <td class="cpu_odd_odd"> 0,2 ms</td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">C6 (cc6)</td> > <td class="core_even"> 0,0%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">C6-IVB</td> > <td class="cpu_even_even"> 0,0%</td> > <td class="cpu_even_even"> 0,0 ms</td> > <td class="cpu_even_odd"> 0,0%</td> > <td class="cpu_even_odd"> 0,0 ms</td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C7 (cc7)</td> > <td class="core_odd"> 96,1%</td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">C7-IVB</td> > <td class="cpu_odd_even"> 97,8%</td> > <td class="cpu_odd_even"> 6,1 ms</td> > <td class="cpu_odd_odd"> 99,2%</td> > <td class="cpu_odd_odd"> 33,6 ms</td> ></tr> ><tr> > <th colspan="2" class="package_header"> </th> > <td width="2%"> </td> > <th width="25%" colspan="2" class="core_header">GPU 28584272</th> > <td width="2%"> </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq"></td> > <td class="core_odd"></td> > <td width="2%"> </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">Powered On</td> > <td class="core_even"> 5,3%</td> > <td width="2%"> </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">RC6</td> > <td class="core_odd"> 8,0%</td> > <td width="2%"> </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">RC6p</td> > <td class="core_even"> 86,6%</td> > <td width="2%"> </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">RC6pp</td> > <td class="core_odd"> 0,0%</td> > <td width="2%"> </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"></td> > <td class="core_even"></td> > <td width="2%"> </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq"></td> > <td class="core_odd"></td> > <td width="2%"> </td> ></tr> ></table> > ></div> > ><div id="cpufreq"><h2>Processor Frequency Report</h2> ><table width="100%"> ><tr> > <th width="25%" colspan="2" class="package_header">Package 0</th> > <td width="2%"> </td> > <th width="25%" colspan="2" class="core_header">Core 0</th> > <td width="2%"> </td> > <th colspan="2" class="cpu_header">CPU 0</th> > <th colspan="2" class="cpu_header">CPU 1</th> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq"></td> > <td class="package_odd"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq"></td> > <td class="package_odd"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">Actual</td> > <td class="cpu_odd_even"> 1307 MHz</td> > <td class="cpu_odd_odd"> 813 MHz</td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq">Idle</td> > <td class="package_even"> 97,3% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">Idle</td> > <td class="package_even"> 98,6% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">Idle</td> > <td class="cpu_even_even"> 98,9% </td> > <td class="cpu_even_odd"> 99,7% </td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq">2,81 GHz</td> > <td class="package_odd"> 0,3% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1,80 GHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1,80 GHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"> 0,3% </td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq"> 800 MHz</td> > <td class="package_even"> 1,9% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"> 800 MHz</td> > <td class="package_even"> 0,5% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"> 800 MHz</td> > <td class="cpu_even_even"> 0,3% </td> > <td class="cpu_even_odd"> 0,0% </td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq">1000 MHz</td> > <td class="package_odd"> 0,1% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1000 MHz</td> > <td class="package_odd"> 0,1% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1000 MHz</td> > <td class="cpu_odd_even"> 0,1% </td> > <td class="cpu_odd_odd"> 0,0% </td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq">1,80 GHz</td> > <td class="package_even"> 0,1% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1100 MHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1100 MHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"> 0,0% </td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq">1100 MHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1200 MHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1200 MHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"></td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq">1200 MHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1300 MHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1300 MHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq">1300 MHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1400 MHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1400 MHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"></td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq">1400 MHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1500 MHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1500 MHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq">1500 MHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1,60 GHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1,60 GHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"></td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq">1,60 GHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1,71 GHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1,71 GHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td width="10%" class="cpu_odd_freq">1,71 GHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">2,81 GHz</td> > <td class="package_odd"> 0,3% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">2,81 GHz</td> > <td class="cpu_odd_even"> 0,3% </td> > <td class="cpu_odd_odd"></td> ></tr> ><tr> > <td width="10%" class="cpu_even_freq">2,60 GHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">2,60 GHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">2,60 GHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <th width="25%" colspan="2" class="core_header">Core 1</th> > <td width="2%"> </td> > <th colspan="2" class="cpu_header">CPU 2</th> > <th colspan="2" class="cpu_header">CPU 3</th> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"></td> > <td class="package_even"></td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">Actual</td> > <td class="cpu_even_even"> 808 MHz</td> > <td class="cpu_even_odd"> 807 MHz</td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">Idle</td> > <td class="package_odd"> 98,5% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">Idle</td> > <td class="cpu_odd_even"> 99,0% </td> > <td class="cpu_odd_odd"> 99,4% </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1,80 GHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq"> 800 MHz</td> > <td class="cpu_even_even"> 1,0% </td> > <td class="cpu_even_odd"> 0,0% </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq"> 800 MHz</td> > <td class="package_odd"> 1,5% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1000 MHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"> 0,6% </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1000 MHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1100 MHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"> 0,0% </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1100 MHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1200 MHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"> 0,0% </td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1200 MHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1300 MHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1300 MHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1400 MHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1400 MHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1500 MHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1500 MHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1,60 GHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1,60 GHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">1,71 GHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1,71 GHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">1,80 GHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">2,81 GHz</td> > <td class="package_even"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_even_freq">2,81 GHz</td> > <td class="cpu_even_even"> 0,0% </td> > <td class="cpu_even_odd"></td> ></tr> ><tr> > <td colspan="2"> </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">2,60 GHz</td> > <td class="package_odd"> 0,0% </td> > <td width="2%"> </td> > <td width="10%" class="cpu_odd_freq">2,60 GHz</td> > <td class="cpu_odd_even"> 0,0% </td> > <td class="cpu_odd_odd"></td> ></tr> ></table> > ></div> > ><div id="software"><h2>Overview of Software Power Consumers</h2> ><table width="100%"> ><tr> > <th width="10%">Usage</th> > <th width="10%">Wakeups/s</th> > <th width="10%">GPU ops/s</th> > <th width="10%">Disk IO/s</th> > <th width="10%">GFX Wakeups/s</th> > <th width="10%" class="process">Category</th> > <th class="process">Description</th> ></tr> ><tr class="process_odd"> > <td class="process_power"> 3,4 ms/s</td> > <td class="process_power"> 88,0</td> > <td class="process_power"></td> > <td class="process_power"></td> > <td class="process_power"></td> > <td>Interrupt</td> > <td>N_O_N_E</td> ></tr> ><tr class="process_even"> > <td class="process_power"> 4,5 ms/s</td> > <td class="process_power"> 30,6</td> > <td class="process_power"> 0,1</td> > <td class="process_power"></td> > <td class="process_power"> 0,1</td> > <td>Process</td> > <td>N_O_N_E</td> ></tr> ></table> > ></div> > ><div id="device"><h2>Device Power Report</h2> ><table width="100%"> ><tr> > <th width="10%">Usage</th> > <th class="device">Device name</th> ></tr> ><tr class="device_odd"> > <td class="device_util"> 3,9%</td> > <td>CPU core</td> ></tr> ><tr class="device_even"> > <td class="device_util"> 2,7 ops/s</td> > <td>GPU core</td> ></tr> ></table> > ><h2>Process device activity</h2> ><table width="100%"> ><tr> > <th width="40%" class="device">Process</th> > <th class="device">Device</th> ></tr> ><tr class="device_odd"> > <td>systemd</td> > <td>/dev/autofs</td> ></tr> ><tr class="device_even"> > <td>systemd-journal</td> > <td>/dev/kmsg</td> ></tr> ></table> > ></div> > ><div id="tuning"><h2>Software Settings in need of Tuning</h2> ><table width="100%"> ><tr> > <th class="tunable">Description</th> > <th class="tunable">Script</th> ></tr> ><tr class="tunable_odd_bad"> > <td>VM writeback timeout</td> > <td>echo '1500' > '/proc/sys/vm/dirty_writeback_centisecs';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Enable SATA link power Managmenet for host0</td> > <td>echo 'min_power' > '/sys/class/scsi_host/host0/link_power_management_policy';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Enable SATA link power Managmenet for host1</td> > <td>echo 'min_power' > '/sys/class/scsi_host/host1/link_power_management_policy';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Enable SATA link power Managmenet for host2</td> > <td>echo 'min_power' > '/sys/class/scsi_host/host2/link_power_management_policy';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Enable SATA link power Managmenet for host3</td> > <td>echo 'min_power' > '/sys/class/scsi_host/host3/link_power_management_policy';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Enable SATA link power Managmenet for host4</td> > <td>echo 'min_power' > '/sys/class/scsi_host/host4/link_power_management_policy';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Enable SATA link power Managmenet for host5</td> > <td>echo 'min_power' > '/sys/class/scsi_host/host5/link_power_management_policy';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Enable Audio codec power management</td> > <td>echo '1' > '/sys/module/snd_hda_intel/parameters/power_save';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>NMI watchdog should be turned off</td> > <td>echo '0' > '/proc/sys/kernel/nmi_watchdog';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1a.0/power/control';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family KT Controller</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:16.3/power/control';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:16.0/power/control';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:14.0/power/control';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Runtime PM for PCI Device Intel Corporation 3rd Gen Core processor Graphics Controller</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:02.0/power/control';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Runtime PM for PCI Device Intel Corporation 3rd Gen Core processor DRAM Controller</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:00.0/power/control';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1b.0/power/control';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.0/power/control';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Runtime PM for PCI Device Intel Corporation QS77 Express Chipset LPC Controller</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.0/power/control';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode]</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.2/power/control';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.3/power/control';</td> ></tr> ><tr class="tunable_odd_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.0/power/control';</td> ></tr> ><tr class="tunable_even_bad"> > <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2</td> > <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.1/power/control';</td> ></tr> ></table> > ><h2>Optimal Tuned Software Settings</h2> ><table width="100%"> ><tr> > <th class="tunable">Description</th> ></tr> ><tr class="tunable_odd"> > <td>Autosuspend for USB device Integrated Camera [SunplusIT INC.]</td> ></tr> ><tr class="tunable_even"> > <td>Autosuspend for USB device USB2.0 Hub [TRANSCEND]</td> ></tr> ><tr class="tunable_odd"> > <td>Autosuspend for USB device USB3.0 Hub [TRANSCEND]</td> ></tr> ><tr class="tunable_even"> > <td>Autosuspend for USB device EHCI Host Controller [usb1]</td> ></tr> ><tr class="tunable_odd"> > <td>Autosuspend for USB device EHCI Host Controller [usb2]</td> ></tr> ><tr class="tunable_even"> > <td>Autosuspend for USB device xHCI Host Controller [usb3]</td> ></tr> ><tr class="tunable_odd"> > <td>Autosuspend for USB device xHCI Host Controller [usb4]</td> ></tr> ><tr class="tunable_even"> > <td>Autosuspend for USB device Biometric Coprocessor [Auth]</td> ></tr> ><tr class="tunable_odd"> > <td>Autosuspend for unknown USB device 1-1 (8087:0024)</td> ></tr> ><tr class="tunable_even"> > <td>Autosuspend for unknown USB device 2-1 (8087:0024)</td> ></tr> ><tr class="tunable_odd"> > <td>Using 'ondemand' cpufreq governor</td> ></tr> ></table> > ></div> > ></body> ></html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>PowerTOP report</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <script type='text/javascript'> var powertop = { blocks: { system: 'System Info', summary: 'Summary', cpuidle: 'CPU Idle', cpufreq: 'CPU Frequency', software: 'Software Info', device: 'Device Info', tuning: 'Tuning' }, cadd: function(idx, c){ var el = document.getElementById(idx); if (el) { var cn = el.className; if (cn.indexOf(c) != -1) return; cn += ' ' + c; el.className = cn; } }, crm: function(id, c){ var el = document.getElementById(id); if (el) { var cn = el.className while (cn.indexOf(' ' + c) != -1) cn = cn.replace(' ' + c,''); el.className = cn; } }, newbutton: function(id, txt) { var x = document.createElement('div'); x.id = id + '_button'; x.className = 'nav_button'; x.textContent = txt; x.innerText = txt; x.onclick = function() { powertop.toggle(id); }; return x; }, setupbuttons: function() { var t = document.getElementById('top'); if (t) { for (var b in powertop.blocks) { t.appendChild(powertop.newbutton(b, powertop.blocks[b])); } t.appendChild(powertop.newbutton('all', 'All')); } }, toggle: function(b) { powertop.baseall(); if (b == 'all') { for (var c in powertop.blocks) { powertop.crm(c, 'hide'); } } else { powertop.crm(b, 'hide'); } powertop.cadd(b + '_button', 'pressed'); }, baseall: function() { for (var b in powertop.blocks) { powertop.cadd(b, 'hide'); powertop.crm(b + '_button', 'pressed'); } powertop.cadd('all', 'hide'); powertop.crm('all_button', 'pressed'); }, onload: function() { powertop.setupbuttons(); powertop.toggle('summary'); } } </script> <style type='text/css'> table { background-color: #F8F8F8; color: black; } th { text-align: right; } th.device { text-align: left; } th.process { text-align: left; } th.tunable { text-align: left; } td.package_odd { background-color: #E0ffE0; color: black; text-align: right; } td.package_even { background-color: #F0ffF0; color: black; text-align: right; } td.core_even { background-color: #F0ffF0; color: black; text-align: right; } td.core_odd { background-color: #E0E0ff; color: black; text-align: right; } td.cpu_even_freq { background-color: #E2E2E2; color: black; } td.cpu_odd_freq { background-color: #F4f4F4; color: black; } td.cpu_even_even { background-color: #E0E0f0; color: black; text-align: right; } td.cpu_even_odd { background-color: #F0f0F0; color: black; text-align: right; } td.cpu_odd_even { background-color: #E0E0ff; color: black; text-align: right; } td.cpu_odd_odd { background-color: #F0ffF0; color: black; text-align: right; } tr.device_odd { background-color: #E0E0E0; color: black; } tr.device_even { background-color: #F0f0F0; color: black; } tr.process_odd { background-color: #E0E0E0; color: black; } tr.process_even { background-color: #F0f0F0; color: black; } td.device_power { text-align: right; } td.process_power { text-align: right; } td.device_util { text-align: right; } tr.tunable_odd { background-color: #E0E0E0; color: black; } tr.tunable_even { background-color: #F0f0F0; color: black; } tr.tunable_odd_bad { background-color: #FFE0E0; color: black; } tr.tunable_even_bad { background-color: #FFf0F0; color: black; } tr.system_odd { background-color: #E0E0E0; color: black; } tr.system_even { background-color: #F0f0F0; color: black; } tr.device_odd { background-color: #E0E0E0; color: black; } tr.device_even { background-color: #F0f0F0; color: black; } body { background-color: #eee; /* Background color */ color: #222; /* Foreground color used for text */ font-family: Helvetica; font-size: 14px; margin: 0; /* Amount of negative space around the outside of the body */ padding: 0; /* Amount of negative space around the inside of the body */ } #top { background-color: #ccc; border-bottom: 1px solid #666; color: #222; display: block; font-size: 20px; font-weight: bold; padding: 10px 0; text-align: center; text-decoration: none; text-shadow: 0px 1px 1px #fff; background-image: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#999)); } #top div { height: 30px; font-weight: bold; text-align: center; color: white; text-shadow: rgba(0,0,0,0.6) 0px -1px 1px; line-height: 28px; border-width:0px 8px 0px 8px; } #top div.nav_button { display: inline; cursor: pointer; padding: 0.3em 0.5em; margin: 0 0.2em; } div.pressed { background-color: #000000; border: 1px solid #000000; color: #000000; border-radius: 8px; } div.hide { display: none; } </style> </head> <body onload='powertop.onload();'> <div id='top'> </div> <div id="system"><h2>System Information</h2> <table> <tr class="system_even"> <td width="20%">PowerTOP Version</td> <td>v2.5</td> </tr> <tr class="system_odd"> <td>Kernel Version</td> <td>Linux version 3.14.3-200.fc20.x86_64 (mockbuild@bkernel02) (gcc version 4.8.2 20131212 (Red Hat 4.8.2-7) (GCC) ) #1 SMP Tue May 6 19:00:18 UTC 2014</td> </tr> <tr class="system_even"> <td>System Name</td> <td>N_O_N_E</td> </tr> <tr class="system_odd"> <td>CPU Information</td> <td>N_O_N_E</td> </tr> <tr class="system_even"> <td>OS Information</td> <td>Fedora release 20 (Heisenbug)</td> </tr> </table> </div> <div id="summary"><h2>Power Consumption Summary</h2> <p>235,3 wakeups/second, 2,7 GPU ops/second, 0,0 VFS ops/sec, 5,5 GFX wakes/sec and 3,9% CPU use</p> <table width="100%"> <tr> <th width="10%">Usage</th> <th width="10%">Events/s</th> <th width="10%" class="process">Category</th> <th class="process">Description</th> </tr> <tr class="process_odd"> <td class="process_power">100,0%</td> <td class="process_power"></td> <td>Device</td> <td>N_O_N_E</td> </tr> <tr class="process_even"> <td class="process_power"> 0,3%</td> <td class="process_power"> 88,0</td> <td>Interrupt</td> <td>N_O_N_E</td> </tr> </table> </div> <div id="cpuidle"><h2>Processor Idle state report</h2> <table width="100%"> <tr> <th width="25%" colspan="2" class="package_header">Package 0</th> <td width="2%"> </td> <th width="25%" colspan="2" class="core_header">Core 0</th> <td width="2%"> </td> <th colspan="3" class="cpu_header">CPU 0</th> <th colspan="3" class="cpu_header">CPU 1</th> </tr> <tr> <td width="10%" class="cpu_odd_freq"></td> <td class="package_odd"></td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq"></td> <td class="core_odd"></td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C0 active</td> <td class="cpu_odd_even"> 1,1%</td> <td class="cpu_odd_even"> </td> <td class="cpu_odd_odd"> 0,1%</td> <td class="cpu_odd_odd"> </td> </tr> <tr> <td width="10%" class="cpu_even_freq"></td> <td class="package_even"></td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"></td> <td class="core_even"></td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">POLL</td> <td class="cpu_even_even"> 0,0%</td> <td class="cpu_even_even"> 0,0 ms</td> <td class="cpu_even_odd"> 0,0%</td> <td class="cpu_even_odd"> 0,0 ms</td> </tr> <tr> <td width="10%" class="cpu_odd_freq"></td> <td class="package_odd"></td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq"></td> <td class="core_odd"></td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C1E-IVB</td> <td class="cpu_odd_even"> 0,0%</td> <td class="cpu_odd_even"> 0,5 ms</td> <td class="cpu_odd_odd"> 0,5%</td> <td class="cpu_odd_odd"> 15,8 ms</td> </tr> <tr> <td width="10%" class="cpu_even_freq">C2 (pc2)</td> <td class="package_even"> 1,1%</td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"></td> <td class="core_even"></td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"></td> <td class="cpu_even_even"></td> <td class="cpu_even_even"></td> <td class="cpu_even_odd"></td> <td class="cpu_even_odd"></td> </tr> <tr> <td width="10%" class="cpu_odd_freq">C3 (pc3)</td> <td class="package_odd"> 0,0%</td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C3 (cc3)</td> <td class="core_odd"> 0,0%</td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C3-IVB</td> <td class="cpu_odd_even"> 0,3%</td> <td class="cpu_odd_even"> 8,6 ms</td> <td class="cpu_odd_odd"> 0,0%</td> <td class="cpu_odd_odd"> 0,2 ms</td> </tr> <tr> <td width="10%" class="cpu_even_freq">C6 (pc6)</td> <td class="package_even"> 3,6%</td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">C6 (cc6)</td> <td class="core_even"> 0,0%</td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">C6-IVB</td> <td class="cpu_even_even"> 0,0%</td> <td class="cpu_even_even"> 0,0 ms</td> <td class="cpu_even_odd"> 0,0%</td> <td class="cpu_even_odd"> 0,0 ms</td> </tr> <tr> <td width="10%" class="cpu_odd_freq">C7 (pc7)</td> <td class="package_odd"> 84,0%</td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C7 (cc7)</td> <td class="core_odd"> 97,0%</td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C7-IVB</td> <td class="cpu_odd_even"> 97,7%</td> <td class="cpu_odd_even"> 39,9 ms</td> <td class="cpu_odd_odd"> 99,1%</td> <td class="cpu_odd_odd"> 54,5 ms</td> </tr> <tr> <th colspan="2" class="package_header"> </th> <td width="2%"> </td> <th width="25%" colspan="2" class="core_header">Core 1</th> <td width="2%"> </td> <th colspan="3" class="cpu_header">CPU 2</th> <th colspan="3" class="cpu_header">CPU 3</th> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq"></td> <td class="core_odd"></td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C0 active</td> <td class="cpu_odd_even"> 0,8%</td> <td class="cpu_odd_even"> </td> <td class="cpu_odd_odd"> 0,3%</td> <td class="cpu_odd_odd"> </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"></td> <td class="core_even"></td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">POLL</td> <td class="cpu_even_even"> 0,0%</td> <td class="cpu_even_even"> 0,0 ms</td> <td class="cpu_even_odd"> 0,0%</td> <td class="cpu_even_odd"> 0,0 ms</td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq"></td> <td class="core_odd"></td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C1E-IVB</td> <td class="cpu_odd_even"> 0,0%</td> <td class="cpu_odd_even"> 0,2 ms</td> <td class="cpu_odd_odd"> 0,0%</td> <td class="cpu_odd_odd"> 0,0 ms</td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"></td> <td class="core_even"></td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"></td> <td class="cpu_even_even"></td> <td class="cpu_even_even"></td> <td class="cpu_even_odd"></td> <td class="cpu_even_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C3 (cc3)</td> <td class="core_odd"> 0,0%</td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C3-IVB</td> <td class="cpu_odd_even"> 0,0%</td> <td class="cpu_odd_even"> 0,3 ms</td> <td class="cpu_odd_odd"> 0,0%</td> <td class="cpu_odd_odd"> 0,2 ms</td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">C6 (cc6)</td> <td class="core_even"> 0,0%</td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">C6-IVB</td> <td class="cpu_even_even"> 0,0%</td> <td class="cpu_even_even"> 0,0 ms</td> <td class="cpu_even_odd"> 0,0%</td> <td class="cpu_even_odd"> 0,0 ms</td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C7 (cc7)</td> <td class="core_odd"> 96,1%</td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">C7-IVB</td> <td class="cpu_odd_even"> 97,8%</td> <td class="cpu_odd_even"> 6,1 ms</td> <td class="cpu_odd_odd"> 99,2%</td> <td class="cpu_odd_odd"> 33,6 ms</td> </tr> <tr> <th colspan="2" class="package_header"> </th> <td width="2%"> </td> <th width="25%" colspan="2" class="core_header">GPU 28584272</th> <td width="2%"> </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq"></td> <td class="core_odd"></td> <td width="2%"> </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">Powered On</td> <td class="core_even"> 5,3%</td> <td width="2%"> </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">RC6</td> <td class="core_odd"> 8,0%</td> <td width="2%"> </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">RC6p</td> <td class="core_even"> 86,6%</td> <td width="2%"> </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">RC6pp</td> <td class="core_odd"> 0,0%</td> <td width="2%"> </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"></td> <td class="core_even"></td> <td width="2%"> </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq"></td> <td class="core_odd"></td> <td width="2%"> </td> </tr> </table> </div> <div id="cpufreq"><h2>Processor Frequency Report</h2> <table width="100%"> <tr> <th width="25%" colspan="2" class="package_header">Package 0</th> <td width="2%"> </td> <th width="25%" colspan="2" class="core_header">Core 0</th> <td width="2%"> </td> <th colspan="2" class="cpu_header">CPU 0</th> <th colspan="2" class="cpu_header">CPU 1</th> </tr> <tr> <td width="10%" class="cpu_odd_freq"></td> <td class="package_odd"></td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq"></td> <td class="package_odd"></td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">Actual</td> <td class="cpu_odd_even"> 1307 MHz</td> <td class="cpu_odd_odd"> 813 MHz</td> </tr> <tr> <td width="10%" class="cpu_even_freq">Idle</td> <td class="package_even"> 97,3% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">Idle</td> <td class="package_even"> 98,6% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">Idle</td> <td class="cpu_even_even"> 98,9% </td> <td class="cpu_even_odd"> 99,7% </td> </tr> <tr> <td width="10%" class="cpu_odd_freq">2,81 GHz</td> <td class="package_odd"> 0,3% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1,80 GHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1,80 GHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"> 0,3% </td> </tr> <tr> <td width="10%" class="cpu_even_freq"> 800 MHz</td> <td class="package_even"> 1,9% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"> 800 MHz</td> <td class="package_even"> 0,5% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"> 800 MHz</td> <td class="cpu_even_even"> 0,3% </td> <td class="cpu_even_odd"> 0,0% </td> </tr> <tr> <td width="10%" class="cpu_odd_freq">1000 MHz</td> <td class="package_odd"> 0,1% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1000 MHz</td> <td class="package_odd"> 0,1% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1000 MHz</td> <td class="cpu_odd_even"> 0,1% </td> <td class="cpu_odd_odd"> 0,0% </td> </tr> <tr> <td width="10%" class="cpu_even_freq">1,80 GHz</td> <td class="package_even"> 0,1% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1100 MHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1100 MHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"> 0,0% </td> </tr> <tr> <td width="10%" class="cpu_odd_freq">1100 MHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1200 MHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1200 MHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"></td> </tr> <tr> <td width="10%" class="cpu_even_freq">1200 MHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1300 MHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1300 MHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"></td> </tr> <tr> <td width="10%" class="cpu_odd_freq">1300 MHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1400 MHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1400 MHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"></td> </tr> <tr> <td width="10%" class="cpu_even_freq">1400 MHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1500 MHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1500 MHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"></td> </tr> <tr> <td width="10%" class="cpu_odd_freq">1500 MHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1,60 GHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1,60 GHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"></td> </tr> <tr> <td width="10%" class="cpu_even_freq">1,60 GHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1,71 GHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1,71 GHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"></td> </tr> <tr> <td width="10%" class="cpu_odd_freq">1,71 GHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">2,81 GHz</td> <td class="package_odd"> 0,3% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">2,81 GHz</td> <td class="cpu_odd_even"> 0,3% </td> <td class="cpu_odd_odd"></td> </tr> <tr> <td width="10%" class="cpu_even_freq">2,60 GHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">2,60 GHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">2,60 GHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <th width="25%" colspan="2" class="core_header">Core 1</th> <td width="2%"> </td> <th colspan="2" class="cpu_header">CPU 2</th> <th colspan="2" class="cpu_header">CPU 3</th> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"></td> <td class="package_even"></td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">Actual</td> <td class="cpu_even_even"> 808 MHz</td> <td class="cpu_even_odd"> 807 MHz</td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">Idle</td> <td class="package_odd"> 98,5% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">Idle</td> <td class="cpu_odd_even"> 99,0% </td> <td class="cpu_odd_odd"> 99,4% </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1,80 GHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq"> 800 MHz</td> <td class="cpu_even_even"> 1,0% </td> <td class="cpu_even_odd"> 0,0% </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq"> 800 MHz</td> <td class="package_odd"> 1,5% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1000 MHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"> 0,6% </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1000 MHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1100 MHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"> 0,0% </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1100 MHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1200 MHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"> 0,0% </td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1200 MHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1300 MHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1300 MHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1400 MHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1400 MHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1500 MHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1500 MHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1,60 GHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1,60 GHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">1,71 GHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1,71 GHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">1,80 GHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">2,81 GHz</td> <td class="package_even"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_even_freq">2,81 GHz</td> <td class="cpu_even_even"> 0,0% </td> <td class="cpu_even_odd"></td> </tr> <tr> <td colspan="2"> </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">2,60 GHz</td> <td class="package_odd"> 0,0% </td> <td width="2%"> </td> <td width="10%" class="cpu_odd_freq">2,60 GHz</td> <td class="cpu_odd_even"> 0,0% </td> <td class="cpu_odd_odd"></td> </tr> </table> </div> <div id="software"><h2>Overview of Software Power Consumers</h2> <table width="100%"> <tr> <th width="10%">Usage</th> <th width="10%">Wakeups/s</th> <th width="10%">GPU ops/s</th> <th width="10%">Disk IO/s</th> <th width="10%">GFX Wakeups/s</th> <th width="10%" class="process">Category</th> <th class="process">Description</th> </tr> <tr class="process_odd"> <td class="process_power"> 3,4 ms/s</td> <td class="process_power"> 88,0</td> <td class="process_power"></td> <td class="process_power"></td> <td class="process_power"></td> <td>Interrupt</td> <td>N_O_N_E</td> </tr> <tr class="process_even"> <td class="process_power"> 4,5 ms/s</td> <td class="process_power"> 30,6</td> <td class="process_power"> 0,1</td> <td class="process_power"></td> <td class="process_power"> 0,1</td> <td>Process</td> <td>N_O_N_E</td> </tr> </table> </div> <div id="device"><h2>Device Power Report</h2> <table width="100%"> <tr> <th width="10%">Usage</th> <th class="device">Device name</th> </tr> <tr class="device_odd"> <td class="device_util"> 3,9%</td> <td>CPU core</td> </tr> <tr class="device_even"> <td class="device_util"> 2,7 ops/s</td> <td>GPU core</td> </tr> </table> <h2>Process device activity</h2> <table width="100%"> <tr> <th width="40%" class="device">Process</th> <th class="device">Device</th> </tr> <tr class="device_odd"> <td>systemd</td> <td>/dev/autofs</td> </tr> <tr class="device_even"> <td>systemd-journal</td> <td>/dev/kmsg</td> </tr> </table> </div> <div id="tuning"><h2>Software Settings in need of Tuning</h2> <table width="100%"> <tr> <th class="tunable">Description</th> <th class="tunable">Script</th> </tr> <tr class="tunable_odd_bad"> <td>VM writeback timeout</td> <td>echo '1500' > '/proc/sys/vm/dirty_writeback_centisecs';</td> </tr> <tr class="tunable_even_bad"> <td>Enable SATA link power Managmenet for host0</td> <td>echo 'min_power' > '/sys/class/scsi_host/host0/link_power_management_policy';</td> </tr> <tr class="tunable_odd_bad"> <td>Enable SATA link power Managmenet for host1</td> <td>echo 'min_power' > '/sys/class/scsi_host/host1/link_power_management_policy';</td> </tr> <tr class="tunable_even_bad"> <td>Enable SATA link power Managmenet for host2</td> <td>echo 'min_power' > '/sys/class/scsi_host/host2/link_power_management_policy';</td> </tr> <tr class="tunable_odd_bad"> <td>Enable SATA link power Managmenet for host3</td> <td>echo 'min_power' > '/sys/class/scsi_host/host3/link_power_management_policy';</td> </tr> <tr class="tunable_even_bad"> <td>Enable SATA link power Managmenet for host4</td> <td>echo 'min_power' > '/sys/class/scsi_host/host4/link_power_management_policy';</td> </tr> <tr class="tunable_odd_bad"> <td>Enable SATA link power Managmenet for host5</td> <td>echo 'min_power' > '/sys/class/scsi_host/host5/link_power_management_policy';</td> </tr> <tr class="tunable_even_bad"> <td>Enable Audio codec power management</td> <td>echo '1' > '/sys/module/snd_hda_intel/parameters/power_save';</td> </tr> <tr class="tunable_odd_bad"> <td>NMI watchdog should be turned off</td> <td>echo '0' > '/proc/sys/kernel/nmi_watchdog';</td> </tr> <tr class="tunable_even_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1a.0/power/control';</td> </tr> <tr class="tunable_odd_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family KT Controller</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:16.3/power/control';</td> </tr> <tr class="tunable_even_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:16.0/power/control';</td> </tr> <tr class="tunable_odd_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:14.0/power/control';</td> </tr> <tr class="tunable_even_bad"> <td>Runtime PM for PCI Device Intel Corporation 3rd Gen Core processor Graphics Controller</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:02.0/power/control';</td> </tr> <tr class="tunable_odd_bad"> <td>Runtime PM for PCI Device Intel Corporation 3rd Gen Core processor DRAM Controller</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:00.0/power/control';</td> </tr> <tr class="tunable_even_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1b.0/power/control';</td> </tr> <tr class="tunable_odd_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.0/power/control';</td> </tr> <tr class="tunable_even_bad"> <td>Runtime PM for PCI Device Intel Corporation QS77 Express Chipset LPC Controller</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.0/power/control';</td> </tr> <tr class="tunable_odd_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode]</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.2/power/control';</td> </tr> <tr class="tunable_even_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.3/power/control';</td> </tr> <tr class="tunable_odd_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.0/power/control';</td> </tr> <tr class="tunable_even_bad"> <td>Runtime PM for PCI Device Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2</td> <td>echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.1/power/control';</td> </tr> </table> <h2>Optimal Tuned Software Settings</h2> <table width="100%"> <tr> <th class="tunable">Description</th> </tr> <tr class="tunable_odd"> <td>Autosuspend for USB device Integrated Camera [SunplusIT INC.]</td> </tr> <tr class="tunable_even"> <td>Autosuspend for USB device USB2.0 Hub [TRANSCEND]</td> </tr> <tr class="tunable_odd"> <td>Autosuspend for USB device USB3.0 Hub [TRANSCEND]</td> </tr> <tr class="tunable_even"> <td>Autosuspend for USB device EHCI Host Controller [usb1]</td> </tr> <tr class="tunable_odd"> <td>Autosuspend for USB device EHCI Host Controller [usb2]</td> </tr> <tr class="tunable_even"> <td>Autosuspend for USB device xHCI Host Controller [usb3]</td> </tr> <tr class="tunable_odd"> <td>Autosuspend for USB device xHCI Host Controller [usb4]</td> </tr> <tr class="tunable_even"> <td>Autosuspend for USB device Biometric Coprocessor [Auth]</td> </tr> <tr class="tunable_odd"> <td>Autosuspend for unknown USB device 1-1 (8087:0024)</td> </tr> <tr class="tunable_even"> <td>Autosuspend for unknown USB device 2-1 (8087:0024)</td> </tr> <tr class="tunable_odd"> <td>Using 'ondemand' cpufreq governor</td> </tr> </table> </div> </body> </html>
View Attachment As Raw
Actions:
View
Attachments on
bug 1003967
: 895961 |
1056658
|
1076419