<!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.16.0-43-generic (buildd@brownie) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #58~14.04.1-Ubuntu SMP Mon Jun 22 10:21:20 UTC 2015</td>
</tr>
<tr class="system_even">
<td>System Name</td>
<td>Acer EA50_KV V1.12</td>
</tr>
<tr class="system_odd">
<td>CPU Information</td>
<td>4x AMD A10-7300 Radeon R6, 10 Compute Cores 4C+6G</td>
</tr>
<tr class="system_even">
<td>OS Information</td>
<td>Ubuntu 14.04.2 LTS</td>
</tr>
</table>
</div>
<div id="summary"><h2>Power Consumption Summary</h2>
<p>306.6 wakeups/second, 0.0 GPU ops/second, 0.0 VFS ops/sec, 41.3 GFX wakes/sec and 10.8% 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"> 3.0%</td>
<td class="process_power"> 54.2</td>
<td>Process</td>
<td>compiz </td>
</tr>
<tr class="process_even">
<td class="process_power"> 0.3%</td>
<td class="process_power"> 58.3</td>
<td>Process</td>
<td>clipit </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.2%</td>
<td class="process_power"> 44.9</td>
<td>Interrupt</td>
<td>[84] fglrx[0]@PCI:0:1:0</td>
</tr>
<tr class="process_even">
<td class="process_power"> 0.1%</td>
<td class="process_power"> 35.0</td>
<td>kWork</td>
<td>od_dbs_timer</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.1%</td>
<td class="process_power"> 12.5</td>
<td>Timer</td>
<td>hrtimer_wakeup</td>
</tr>
<tr class="process_even">
<td class="process_power"> 0.3%</td>
<td class="process_power"> 11.4</td>
<td>Process</td>
<td>nautilus -n </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.5%</td>
<td class="process_power"> 10.8</td>
<td>Process</td>
<td>/usr/lib/unity/unity-panel-service </td>
</tr>
<tr class="process_even">
<td class="process_power"> 1.2%</td>
<td class="process_power"> 6.9</td>
<td>Process</td>
<td>psensor </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.0%</td>
<td class="process_power"> 11.5</td>
<td>Process</td>
<td>[rcu_sched]</td>
</tr>
<tr class="process_even">
<td class="process_power"> 0.5%</td>
<td class="process_power"> 9.5</td>
<td>Process</td>
<td>/usr/lib/firefox/firefox </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.1%</td>
<td class="process_power"> 7.7</td>
<td>Timer</td>
<td>tick_sched_timer</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>
<td width="2%"> </td>
<th colspan="3" class="cpu_header">CPU 0</th>
</tr>
<tr>
<td width="10%" class="cpu_odd_freq">acpi_idle</td>
<td class="package_odd"> 0.0%</td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">acpi_idle</td>
<td class="cpu_odd_even"> 0.0%</td>
<td class="cpu_odd_even"> </td>
</tr>
<tr>
<td width="10%" class="cpu_even_freq">POLL</td>
<td class="package_even"> 0.0%</td>
<td width="2%"> </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>
</tr>
<tr>
<td width="10%" class="cpu_odd_freq">C1</td>
<td class="package_odd"> 1.9%</td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">C1</td>
<td class="cpu_odd_even"> 4.9%</td>
<td class="cpu_odd_even"> 9.1 ms</td>
</tr>
<tr>
<td width="10%" class="cpu_even_freq">C2</td>
<td class="package_even"> 95.1%</td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">C2</td>
<td class="cpu_even_even"> 92.3%</td>
<td class="cpu_even_even"> 18.1 ms</td>
</tr>
<tr>
<th colspan="2" class="package_header"> </th>
<td width="2%"> </td>
<td width="2%"> </td>
<th colspan="3" class="cpu_header">CPU 1</th>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">acpi_idle</td>
<td class="cpu_even_odd"> 0.0%</td>
<td class="cpu_even_odd"> </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">POLL</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="2%"> </td>
<td width="10%" class="cpu_even_freq">C1</td>
<td class="cpu_even_odd"> 1.4%</td>
<td class="cpu_even_odd"> 3.8 ms</td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">C2</td>
<td class="cpu_odd_odd"> 96.6%</td>
<td class="cpu_odd_odd"> 21.0 ms</td>
</tr>
<tr>
<th colspan="2" class="package_header"> </th>
<td width="2%"> </td>
<td width="2%"> </td>
<th colspan="3" class="cpu_header">CPU 2</th>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">acpi_idle</td>
<td class="cpu_odd_even"> 0.0%</td>
<td class="cpu_odd_even"> </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </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>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">C1</td>
<td class="cpu_odd_even"> 0.3%</td>
<td class="cpu_odd_even"> 0.4 ms</td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">C2</td>
<td class="cpu_even_even"> 97.5%</td>
<td class="cpu_even_even"> 19.8 ms</td>
</tr>
<tr>
<th colspan="2" class="package_header"> </th>
<td width="2%"> </td>
<td width="2%"> </td>
<th colspan="3" class="cpu_header">CPU 3</th>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">acpi_idle</td>
<td class="cpu_even_odd"> 0.0%</td>
<td class="cpu_even_odd"> </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">POLL</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="2%"> </td>
<td width="10%" class="cpu_even_freq">C1</td>
<td class="cpu_even_odd"> 0.9%</td>
<td class="cpu_even_odd"> 0.8 ms</td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">C2</td>
<td class="cpu_odd_odd"> 94.0%</td>
<td class="cpu_odd_odd"> 6.9 ms</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>
<td width="2%"> </td>
<th colspan="2" class="cpu_header">CPU 0</th>
</tr>
<tr>
<td width="10%" class="cpu_odd_freq">1.91 GHz</td>
<td class="package_odd"> 1.7% </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1.91 GHz</td>
<td class="cpu_odd_even"> 0.6% </td>
</tr>
<tr>
<td width="10%" class="cpu_even_freq">1.80 GHz</td>
<td class="package_even"> 0.2% </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1.80 GHz</td>
<td class="cpu_even_even"> 0.0% </td>
</tr>
<tr>
<td width="10%" class="cpu_odd_freq">1500 MHz</td>
<td class="package_odd"> 0.5% </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1500 MHz</td>
<td class="cpu_odd_even"> 0.2% </td>
</tr>
<tr>
<td width="10%" class="cpu_even_freq">1200 MHz</td>
<td class="package_even"> 0.2% </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1200 MHz</td>
<td class="cpu_even_even"> 0.1% </td>
</tr>
<tr>
<td width="10%" class="cpu_odd_freq">1100 MHz</td>
<td class="package_odd"> 5.8% </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1100 MHz</td>
<td class="cpu_odd_even"> 1.7% </td>
</tr>
<tr>
<td width="10%" class="cpu_even_freq">Idle</td>
<td class="package_even"> 91.6% </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">Idle</td>
<td class="cpu_even_even"> 97.4% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<th colspan="2" class="cpu_header">CPU 1</th>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1.91 GHz</td>
<td class="cpu_even_odd"> 0.3% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1.80 GHz</td>
<td class="cpu_odd_odd"> 0.1% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1500 MHz</td>
<td class="cpu_even_odd"> 0.2% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1200 MHz</td>
<td class="cpu_odd_odd"> 0.0% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1100 MHz</td>
<td class="cpu_even_odd"> 1.2% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">Idle</td>
<td class="cpu_odd_odd"> 98.1% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<th colspan="2" class="cpu_header">CPU 2</th>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1.91 GHz</td>
<td class="cpu_odd_even"> 0.4% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1.80 GHz</td>
<td class="cpu_even_even"> 0.0% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1500 MHz</td>
<td class="cpu_odd_even"> 0.1% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1200 MHz</td>
<td class="cpu_even_even"> 0.0% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1100 MHz</td>
<td class="cpu_odd_even"> 1.5% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">Idle</td>
<td class="cpu_even_even"> 97.9% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<th colspan="2" class="cpu_header">CPU 3</th>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1.91 GHz</td>
<td class="cpu_even_odd"> 1.1% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1.80 GHz</td>
<td class="cpu_odd_odd"> 0.0% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1500 MHz</td>
<td class="cpu_even_odd"> 0.3% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">1200 MHz</td>
<td class="cpu_odd_odd"> 0.1% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_even_freq">1100 MHz</td>
<td class="cpu_even_odd"> 2.6% </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="10%" class="cpu_odd_freq">Idle</td>
<td class="cpu_odd_odd"> 95.9% </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"> 29.9 ms/s</td>
<td class="process_power"> 54.2</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"> 11.6</td>
<td>Process</td>
<td>compiz </td>
</tr>
<tr class="process_even">
<td class="process_power"> 3.1 ms/s</td>
<td class="process_power"> 58.3</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"> 26.6</td>
<td>Process</td>
<td>clipit </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 1.7 ms/s</td>
<td class="process_power"> 44.9</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[84] fglrx[0]@PCI:0:1:0</td>
</tr>
<tr class="process_even">
<td class="process_power">524.0 us/s</td>
<td class="process_power"> 35.0</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>od_dbs_timer</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 1.1 ms/s</td>
<td class="process_power"> 12.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>hrtimer_wakeup</td>
</tr>
<tr class="process_even">
<td class="process_power"> 3.1 ms/s</td>
<td class="process_power"> 11.4</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"> 0.2</td>
<td>Process</td>
<td>nautilus -n </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 4.7 ms/s</td>
<td class="process_power"> 10.8</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/unity/unity-panel-service </td>
</tr>
<tr class="process_even">
<td class="process_power"> 12.3 ms/s</td>
<td class="process_power"> 6.9</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"> 1.9</td>
<td>Process</td>
<td>psensor </td>
</tr>
<tr class="process_odd">
<td class="process_power">394.7 us/s</td>
<td class="process_power"> 11.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[rcu_sched]</td>
</tr>
<tr class="process_even">
<td class="process_power"> 5.2 ms/s</td>
<td class="process_power"> 9.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"> 0.2</td>
<td>Process</td>
<td>/usr/lib/firefox/firefox </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 1.0 ms/s</td>
<td class="process_power"> 7.7</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>tick_sched_timer</td>
</tr>
<tr class="process_even">
<td class="process_power"> 0.8 ms/s</td>
<td class="process_power"> 7.0</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[6] tasklet(softirq)</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 17.8 ms/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch </td>
</tr>
<tr class="process_even">
<td class="process_power"> 1.0 ms/s</td>
<td class="process_power"> 6.4</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[85] fglrx[1]@PCI:1:0:0</td>
</tr>
<tr class="process_odd">
<td class="process_power">249.5 us/s</td>
<td class="process_power"> 4.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[4] block(softirq)</td>
</tr>
<tr class="process_even">
<td class="process_power">269.5 us/s</td>
<td class="process_power"> 2.7</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[rcuos/3]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 1.2 ms/s</td>
<td class="process_power"> 2.3</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/x86_64-linux-gnu/indicator-datetime/indicator-datetime-service </td>
</tr>
<tr class="process_even">
<td class="process_power"> 6.6 ms/s</td>
<td class="process_power"> 0.20</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>StartupCache</td>
</tr>
<tr class="process_odd">
<td class="process_power">581.7 us/s</td>
<td class="process_power"> 2.2</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>upstart-dbus-bridge --daemon --session --user --bus-name session </td>
</tr>
<tr class="process_even">
<td class="process_power">432.6 us/s</td>
<td class="process_power"> 1.9</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/bin/python3 /opt/extras.ubuntu.com/my-weather-indicator/bin/my-weather-indicator </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.8 ms/s</td>
<td class="process_power"> 1.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"> 0.9</td>
<td>Process</td>
<td>gnome-terminal </td>
</tr>
<tr class="process_even">
<td class="process_power"> 1.1 ms/s</td>
<td class="process_power"> 1.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/home/amr/.dropbox-dist/dropbox-lnx.x86_64-3.6.8/dropbox </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 4.2 ms/s</td>
<td class="process_power"> 0.30</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/udisks2/udisksd --no-debug </td>
</tr>
<tr class="process_even">
<td class="process_power">441.1 us/s</td>
<td class="process_power"> 1.3</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/upower/upowerd </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 3.2 us/s</td>
<td class="process_power"> 1.2</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>blk_delay_work</td>
</tr>
<tr class="process_even">
<td class="process_power">160.6 us/s</td>
<td class="process_power"> 0.9</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[jbd2/sda2-8]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 1.2 ms/s</td>
<td class="process_power"> 0.30</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/x86_64-linux-gnu/hud/hud-service </td>
</tr>
<tr class="process_even">
<td class="process_power">282.6 us/s</td>
<td class="process_power"> 0.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/x86_64-linux-gnu/indicator-power/indicator-power-service </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.0 us/s</td>
<td class="process_power"> 0.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>disk_events_workfn</td>
</tr>
<tr class="process_even">
<td class="process_power"> 80.9 us/s</td>
<td class="process_power"> 0.5</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[rcuos/0]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 1.3 ms/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>dbus-daemon --fork --session --address=unix:abstract=/tmp/dbus-VqIUhxqsqQ </td>
</tr>
<tr class="process_even">
<td class="process_power">147.1 us/s</td>
<td class="process_power"> 0.4</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>NetworkManager </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 92.8 us/s</td>
<td class="process_power"> 0.4</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/sbin/cupsd -f </td>
</tr>
<tr class="process_even">
<td class="process_power"> 73.5 us/s</td>
<td class="process_power"> 0.4</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[rcuos/1]</td>
</tr>
<tr class="process_odd">
<td class="process_power">130.8 us/s</td>
<td class="process_power"> 0.3</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/unity-settings-daemon/unity-settings-daemon </td>
</tr>
<tr class="process_even">
<td class="process_power"> 59.9 us/s</td>
<td class="process_power"> 0.3</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[rcuos/2]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.8 ms/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>powertop --html=powertop-Acer-E5-551G-T0KC </td>
</tr>
<tr class="process_even">
<td class="process_power"> 18.4 us/s</td>
<td class="process_power"> 0.3</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>watchdog_timer_fn</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 1.2 us/s</td>
<td class="process_power"> 0.3</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>scsi_requeue_run_queue</td>
</tr>
<tr class="process_even">
<td class="process_power"> 0.8 ms/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>wl_timer</td>
</tr>
<tr class="process_odd">
<td class="process_power">432.4 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>systemd-udevd</td>
</tr>
<tr class="process_even">
<td class="process_power"> 32.2 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>upstart-dbus-bridge --daemon --system --user --bus-name system </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 30.3 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/bin/unity-scope-loader applications/applications.scope applications/scopes.scope commands.scope </td>
</tr>
<tr class="process_even">
<td class="process_power"> 27.1 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/x86_64-linux-gnu/indicator-messages/indicator-messages-service </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 27.0 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/x86_64-linux-gnu/indicator-sound/indicator-sound-service </td>
</tr>
<tr class="process_even">
<td class="process_power"> 25.3 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>zeitgeist-datahub </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 23.4 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/x86_64-linux-gnu/zeitgeist-fts </td>
</tr>
<tr class="process_even">
<td class="process_power"> 14.8 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/rtkit/rtkit-daemon </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 7.4 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[watchdog/1]</td>
</tr>
<tr class="process_even">
<td class="process_power"> 6.9 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[watchdog/0]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 6.8 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[watchdog/2]</td>
</tr>
<tr class="process_even">
<td class="process_power"> 6.5 us/s</td>
<td class="process_power"> 0.25</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[watchdog/3]</td>
</tr>
<tr class="process_odd">
<td class="process_power">604.6 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>delayed_work_timer_fn</td>
</tr>
<tr class="process_even">
<td class="process_power">212.1 us/s</td>
<td class="process_power"> 0.15</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/gvfs/gvfs-udisks2-volume-monitor </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 51.0 us/s</td>
<td class="process_power"> 0.20</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>nautilus</td>
</tr>
<tr class="process_even">
<td class="process_power"> 37.3 us/s</td>
<td class="process_power"> 0.20</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>bdi_writeback_workfn</td>
</tr>
<tr class="process_odd">
<td class="process_power">427.7 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[7] sched(softirq)</td>
</tr>
<tr class="process_even">
<td class="process_power"> 18.6 us/s</td>
<td class="process_power"> 0.15</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>ImageDecoder #2</td>
</tr>
<tr class="process_odd">
<td class="process_power">142.8 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/sbin/irqbalance </td>
</tr>
<tr class="process_even">
<td class="process_power">350.9 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[1] timer(softirq)</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 59.2 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>nm-applet </td>
</tr>
<tr class="process_even">
<td class="process_power"> 52.7 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>ImageDecoder #1</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 33.6 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>nmbd -D </td>
</tr>
<tr class="process_even">
<td class="process_power">279.0 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>process_timeout</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 20.2 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>pool</td>
</tr>
<tr class="process_even">
<td class="process_power"> 13.9 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/x86_64-linux-gnu/bamf/bamfdaemon </td>
</tr>
<tr class="process_odd">
<td class="process_power"> 8.3 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/sbin/wpa_supplicant -B -P /run/sendsigs.omit.d/wpasupplicant.pid -u -s -O /var/run/wpa_supplicant </td>
</tr>
<tr class="process_even">
<td class="process_power"> 4.8 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[khugepaged]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 3.3 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>sched_rt_period_timer</td>
</tr>
<tr class="process_even">
<td class="process_power"> 0.8 us/s</td>
<td class="process_power"> 0.10</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>neigh_periodic_work</td>
</tr>
<tr class="process_odd">
<td class="process_power">239.6 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[kworker/3:1]</td>
</tr>
<tr class="process_even">
<td class="process_power"> 77.9 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/sbin/kerneloops </td>
</tr>
<tr class="process_odd">
<td class="process_power">163.2 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>dbus-daemon --system --fork </td>
</tr>
<tr class="process_even">
<td class="process_power"> 30.7 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/lib/systemd/systemd-udevd --daemon </td>
</tr>
<tr class="process_odd">
<td class="process_power">152.9 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[kworker/0:0]</td>
</tr>
<tr class="process_even">
<td class="process_power"> 9.5 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>ImageDecoder #3</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 7.6 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>firefox</td>
</tr>
<tr class="process_even">
<td class="process_power"> 5.6 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>cron </td>
</tr>
<tr class="process_odd">
<td class="process_power">131.9 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[36] wlan0</td>
</tr>
<tr class="process_even">
<td class="process_power"> 5.3 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/sbin/dnsmasq --no-resolv --keep-in-foreground --no-hosts --bind-interfaces --pid-file=/run/sendsigs.omit.d/network-manager</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 3.9 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/x86_64-linux-gnu/unity-lens-files/unity-files-daemon </td>
</tr>
<tr class="process_even">
<td class="process_power"> 3.1 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/sbin/winbindd -F </td>
</tr>
<tr class="process_odd">
<td class="process_power">128.7 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[kworker/1:1]</td>
</tr>
<tr class="process_even">
<td class="process_power"> 2.0 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[wl_event_handle]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 0.7 us/s</td>
<td class="process_power"> 0.05</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>push_to_pool</td>
</tr>
<tr class="process_even">
<td class="process_power">117.1 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[kworker/2:1]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 95.5 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[80] SATA controller</td>
</tr>
<tr class="process_even">
<td class="process_power"> 90.9 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[3] net_rx(softirq)</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 83.9 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Interrupt</td>
<td>[9] RCU(softirq)</td>
</tr>
<tr class="process_even">
<td class="process_power"> 64.6 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[kworker/u8:4]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 51.6 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>tcp_keepalive_timer</td>
</tr>
<tr class="process_even">
<td class="process_power"> 30.7 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[kworker/3:1H]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 26.0 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>vmstat_update</td>
</tr>
<tr class="process_even">
<td class="process_power"> 18.2 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[kworker/u8:1]</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 17.6 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>clocksource_watchdog</td>
</tr>
<tr class="process_even">
<td class="process_power"> 16.2 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Timer</td>
<td>death_by_timeout</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 11.5 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>/usr/lib/evolution/evolution-calendar-factory </td>
</tr>
<tr class="process_even">
<td class="process_power"> 9.1 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>kWork</td>
<td>rtl_task</td>
</tr>
<tr class="process_odd">
<td class="process_power"> 8.4 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>[migration/2]</td>
</tr>
<tr class="process_even">
<td class="process_power"> 8.3 us/s</td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td class="process_power"></td>
<td>Process</td>
<td>whoopsie </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"> 10.8%</td>
<td>CPU use</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>Display backlight</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>Display backlight</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 141f</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Realtek Semiconductor Co., Ltd. Device 5287</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD/ATI] Opal XT [Radeon R7 M265]</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 1425</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>USB device: BCM43142A0 (Broadcom Corp)</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>USB device: ( )</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>USB device: OHCI PCI host controller</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>USB device: OHCI PCI host controller</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>Radio device: acer-wmi</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>Radio device: btusb</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>Radio device: wl</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>Radio device: wl</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 1422</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD/ATI] Kaveri</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD/ATI] Device 1308</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 1424</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 1424</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 141d</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 1426</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Broadcom Corporation BCM43142 802.11b/g/n</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 1426</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 1424</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH USB XHCI Controller</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode]</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH Azalia Controller</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH PCI Bridge</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 141a</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 141b</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 141c</td>
</tr>
<tr class="device_odd">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] Device 141e</td>
</tr>
<tr class="device_even">
<td class="device_util">100.0%</td>
<td>PCI Device: Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller</td>
</tr>
<tr class="device_odd">
<td class="device_util"> 2.3 pkts/s</td>
<td>Network interface: wlan0 (wl)</td>
</tr>
<tr class="device_even">
<td class="device_util"> 0.0 pkts/s</td>
<td>Network interface: eth0 (r8169)</td>
</tr>
<tr class="device_odd">
<td class="device_util"> 0.0 pkts/s</td>
<td>nic:virbr0</td>
</tr>
<tr class="device_even">
<td class="device_util"> 0.0%</td>
<td>Radio device: acer-wmi</td>
</tr>
<tr class="device_odd">
<td class="device_util"> 0.0%</td>
<td>USB device: xHCI Host Controller</td>
</tr>
<tr class="device_even">
<td class="device_util"> 0.0%</td>
<td>USB device: xHCI Host Controller</td>
</tr>
<tr class="device_odd">
<td class="device_util"> 0.0%</td>
<td>USB device: EHCI Host Controller</td>
</tr>
<tr class="device_even">
<td class="device_util"> 0.0%</td>
<td>USB device: EHCI Host Controller</td>
</tr>
<tr class="device_odd">
<td class="device_util"> 0.0%</td>
<td>USB device: HD WebCam (SunplusIT INC.)</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>mount.ntfs-3g</td>
<td>/dev/fuse</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/sda7</td>
</tr>
<tr class="device_odd">
<td>bluetoothd</td>
<td>/dev/rfkill</td>
</tr>
<tr class="device_even">
<td>systemd-logind</td>
<td>/dev/input/event0</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event1</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event2</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event3</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event4</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event6</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event7</td>
</tr>
<tr class="device_odd">
<td>acpid</td>
<td>/dev/input/event0</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event1</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event10</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event2</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event3</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event4</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event5</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event6</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event7</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event8</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event9</td>
</tr>
<tr class="device_even">
<td>wpa_supplicant</td>
<td>/dev/rfkill</td>
</tr>
<tr class="device_odd">
<td>Xorg</td>
<td>/dev/ati/card0</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/ati/card0</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/ati/card1</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/ati/card1</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/ati/card1</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event0</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event10</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event12</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event13</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event2</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event3</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event4</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event5</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event6</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/input/event7</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/vga_arbiter</td>
</tr>
<tr class="device_odd">
<td>upowerd</td>
<td>/dev/cpu_dma_latency</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/input/event1</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/network_latency</td>
</tr>
<tr class="device_even">
<td>gvfsd-fuse</td>
<td>/dev/fuse</td>
</tr>
<tr class="device_odd">
<td>pulseaudio</td>
<td>/dev/snd/controlC0</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/snd/controlC0</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/snd/controlC1</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/snd/controlC1</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/snd/controlC1</td>
</tr>
<tr class="device_even">
<td>indicator-bluet</td>
<td>/dev/rfkill</td>
</tr>
<tr class="device_odd">
<td>compiz</td>
<td>/dev/ati/card0</td>
</tr>
<tr class="device_even">
<td></td>
<td>/dev/ati/card0</td>
</tr>
<tr class="device_odd">
<td></td>
<td>/dev/ati/card1</td>
</tr>
<tr class="device_even">
<td>systemd-localed</td>
<td>/dev/kmsg</td>
</tr>
<tr class="device_odd">
<td>systemd-hostnam</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>Wireless Power Saving for interface wlan0</td>
<td>iw dev wlan0 set power_save on</td>
</tr>
<tr class="tunable_even_bad">
<td>NMI watchdog should be turned off</td>
<td>echo '0' > '/proc/sys/kernel/nmi_watchdog';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Enable Audio codec power management</td>
<td>echo '1' > '/sys/module/snd_hda_intel/parameters/power_save';</td>
</tr>
<tr class="tunable_even_bad">
<td>Enable SATA link power Management for host1</td>
<td>echo 'min_power' > '/sys/class/scsi_host/host1/link_power_management_policy';</td>
</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 Management for host0</td>
<td>echo 'min_power' > '/sys/class/scsi_host/host0/link_power_management_policy';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Autosuspend for USB device BCM43142A0 [Broadcom Corp]</td>
<td>echo 'auto' > '/sys/bus/usb/devices/3-5/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Autosuspend for USB device [ ]</td>
<td>echo 'auto' > '/sys/bus/usb/devices/4-1/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Realtek Semiconductor Co., Ltd. Device 5287</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:02:00.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:02:00.1/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH USB XHCI Controller</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:10.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 1424</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:04.0/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 1426</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:03.2/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 1426</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:03.1/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 1424</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:03.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 1424</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 Advanced Micro Devices, Inc. [AMD] Device 1425</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:02.1/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD/ATI] Device 1308</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:01.1/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD/ATI] Kaveri</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:01.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 1422</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:00.0/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:12.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 141f</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:18.5/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode]</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:11.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 141e</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:18.4/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:12.2/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:13.0/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:13.2/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:14.0/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH Azalia Controller</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:14.2/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH PCI Bridge</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:14.4/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 141a</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:18.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 141b</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:18.1/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 141c</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:18.2/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] Device 141d</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:18.3/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD/ATI] Opal XT [Radeon R7 M265]</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:01:00.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Runtime PM for PCI Device Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:00:14.3/power/control';</td>
</tr>
<tr class="tunable_odd_bad">
<td>Runtime PM for PCI Device Broadcom Corporation BCM43142 802.11b/g/n</td>
<td>echo 'auto' > '/sys/bus/pci/devices/0000:03:00.0/power/control';</td>
</tr>
<tr class="tunable_even_bad">
<td>Wake-on-lan status for device eth0</td>
<td>ethtool -s eth0 wol d;</td>
</tr>
</table>
<h2>Optimal Tuned Software Settings</h2>
<table width="100%">
<tr>
<th class="tunable">Description</th>
</tr>
<tr class="tunable_odd">
<td>Bluetooth device interface status</td>
</tr>
<tr class="tunable_even">
<td>Autosuspend for USB device xHCI Host Controller [usb5]</td>
</tr>
<tr class="tunable_odd">
<td>Autosuspend for USB device OHCI PCI host controller [usb3]</td>
</tr>
<tr class="tunable_even">
<td>Autosuspend for USB device OHCI PCI host controller [usb4]</td>
</tr>
<tr class="tunable_odd">
<td>Autosuspend for USB device EHCI Host Controller [usb1]</td>
</tr>
<tr class="tunable_even">
<td>Autosuspend for USB device EHCI Host Controller [usb2]</td>
</tr>
<tr class="tunable_odd">
<td>Autosuspend for USB device HD WebCam [SunplusIT INC.]</td>
</tr>
<tr class="tunable_even">
<td>Autosuspend for USB device xHCI Host Controller [usb6]</td>
</tr>
<tr class="tunable_odd">
<td>Wake-on-lan status for device virbr0</td>
</tr>
<tr class="tunable_even">
<td>Wake-on-lan status for device wlan0</td>
</tr>
<tr class="tunable_odd">
<td>Using 'ondemand' cpufreq governor</td>
</tr>
</table>
</div>
</body>
</html>