Indicator-powersave & throttle

Thanks to some very useful advice here in the thread and a lot of time on google, this is shaping up into something worthwhile!
indicator-powersave is a fork of indicator-cpufreq with additional controls for system-wide powersaving. It is not a detailed reporting tool like powertop (see throttle check), but enables more comprehensive powersaving than powertop checks for. It is not as multi-purpose as tlp but should be as effective for anything other than a Thinkpad and with a convenient, user-discretion menu to select options by mouse.
The front end is an application indicator:
The backend is a bash script which does it's best to manipulate runtime system settings (sysfs/procfs) rather than modify config files or employ external tools where possible: ENERGY_PERF_BIAS (x86_energy_perf_policy), HDD (hdparm), LAN (ethtool), WLAN (iw), and GPU (nvidia-settings) need optional, external tools. This script works without the indicator.
/usr/bin/throttle
#!/bin/bash
while (( "$#" )); do
#Find the number of physical cores (for hyperthreading control)
CORES="$(grep "^core id" /proc/cpuinfo | sort -u | wc -l)"
case "$1" in
full|performance|cut|powersave)
case "$1" in
full|performance)
GOVERNOR="performance"
XPSTURBO="0"
HYPERTHREADS="1"
ENERGYPERF="0"
LAPTOP="0"
DIRTYWBC="500"
NMIDOG="0" # Always off
POLICY="max_performance"
APM="255"
AAM="254"
CONTROL="on"
AUTOSUSPEND="-1"
POWERSAVE="0"
CONTROLLER="N"
WLPOWERSAVE="off"
WOLA="g"
WOLB="enabled"
LEDBRIGHT="255"
NVPM="1"
cut|powersave)
GOVERNOR="powersave"
XPSTURBO="1"
HYPERTHREADS="0"
ENERGYPERF="15"
LAPTOP="5"
DIRTYWBC="1500"
NMIDOG="0"
POLICY="min_power"
APM="1"
AAM="128"
CONTROL="auto"
AUTOSUSPEND="1"
POWERSAVE="1"
CONTROLLER="Y"
WLPOWERSAVE="on"
WOLA="d"
WOLB="disabled"
LEDBRIGHT="0"
NVPM="0"
esac
# CPU Governor
for i in /sys/bus/cpu/drivers/processor/cpu*/cpufreq/scaling_governor; do [[ -f "${i}" ]] && \
printf "${GOVERNOR}" > "${i}" & done &
# Disable Intel P-State Turbo
[[ -f /sys/devices/system/cpu/intel_pstate/no_turbo ]] && \
printf "${XPSTURBO}" > /sys/devices/system/cpu/intel_pstate/no_turbo &
# Hyperthreads
for i in /sys/devices/system/cpu/cpu*/online; do [[ -f "${i}" ]] && \
[[ "$(printf "${i}" | tr -cd [:digit:])" -ge "${CORES}" ]] && \
printf "${HYPERTHREADS}" > "${i}" & done &
wait # for cpus on/off
# ENERGY_PERF_BIAS
[[ -n "$(command -v x86_energy_perf_policy)" ]] && \
x86_energy_perf_policy "${ENERGYPERF}" &
# Virtual Memory (Swap)
printf "${LAPTOP}" > /proc/sys/vm/laptop_mode &
printf "${DIRTYWBC}" > /proc/sys/vm/dirty_writeback_centisecs &
printf "${DIRTYWBC}" > /proc/sys/vm/dirty_expire_centisecs &
# NMI watchdog
[[ -f /proc/sys/kernel/watchdog ]] && \
printf "${NMIDOG}" > /proc/sys/kernel/watchdog &
# SATA link power management
for i in /sys/class/scsi_host/host*/link_power_management_policy; do [[ -f "${i}" ]] && \
printf "${POLICY}" > "${i}" & done &
# Hard drives
[[ -n "$(command -v hdparm)" ]] && \
hdparm -qB "${APM}" -qM "${AAM}" /dev/[hs]d[a-z] 2> /dev/null &
# Runtime power management for devices (Example with specific exception for Unifying transceiver)
for i in /sys/{class/*,bus/*/devices}/*/power/control; do [[ -f "${i}" ]] && [[ \
-z "$(ls "$(printf "${i}" | sed 's|power.*||g')"/*/ | grep "0003:046D:C52B")" ]] && \
printf "${CONTROL}" > "${i}" & done &
# USB Autosuspend (Example with exception for Unifying transceiver)
for i in /sys/bus/usb/devices/*/power/autosuspend{,_delay_ms}; do [[ -f "${i}" ]] && [[ \
-z "$(ls "$(printf "${i}" | sed 's|power.*||g')"/*/ | grep "0003:046D:C52B")" ]] && \
echo "${AUTOSUSPEND}" > "${i}" & done &
# Powersaving for modules
for i in /sys/module/*/parameters/power_save; do \
printf "${POWERSAVE}" > "${i}" & done &
for i in /sys/module/*/parameters/power_save_controller; do \
printf "${CONTROLLER}" > "${i}" & done &
# Network powersaving
for i in /sys/class/net/wl*; do [[ -d "${i}" ]] && \
[[ -n "$(command -v iw)" ]] && \
iw dev "$(printf "${i}" | sed 's/^.*wl/wl/')" set power_save "${WLPOWERSAVE}" 2> /dev/null & done &
for i in /sys/class/net/e*; do [[ -d "${i}" ]] && \
[[ -n "$(command -v ethtool)" ]] && \
ethtool -s "$(printf "${i}" | sed 's/^.*e/e/')" wol "${WOLA}" 2> /dev/null & done &
for i in /sys/class/net/*/device/power/wakeup; do [[ -f "${i}" ]] && \
printf "${WOLB}" > "${i}" & done &
# LEDs
for i in /sys/class/leds/*/brightness; do [[ -f "${i}" ]] && \
printf "${LEDBRIGHT}" > "${i}" & done &
# Nvidia PowerMizer
[[ -n "$(command -v nvidia-settings)" ]] && \
DISPLAY=":0.0" nvidia-settings -a [gpu:0]/GPUPowerMizerMode="${NVPM}" > /dev/null &
wait # Hey, let's stop! :) *stops* ... YAY! =D
shift
unset GOVERNOR XPSTURBO HYPERTHREADS ENERGYPERF LAPTOP DIRTYWBC NMIDOG \
POLICY APM AAM CONTROL AUTOSUSPEND POWERSAVE CONTROLLER \
WLPOWERSAVE WOLA WOLB LEDBRIGHT NVPM
gov*)
case "${1}" in \
gov-full) GOVERNOR="performance" ;; \
gov-cut) GOVERNOR="powersave" ;; esac
[[ -z "${GOVERNOR}" ]] && \
case "${2}" in \
full|performance) GOVERNOR="performance"; SHIFT="2" ;; \
cut|powersave) GOVERNOR="powersave"; SHIFT="2" ;; esac
[[ -z "${GOVERNOR}" ]] && \
printf "${0} gov {cut,full} - CPU Governor\n" || \
for i in /sys/bus/cpu/drivers/processor/cpu*/cpufreq/scaling_governor; do [[ -f "${i}" ]] && \
printf "${GOVERNOR}" > ${i} & done &
[[ -n "${SHIFT}" ]] && shift "${SHIFT}" || shift
wait
unset GOVERNOR SHIFT
turbo*)
case "${1}" in \
turbo-on) XPSTURBO="0" ;; \
turbo-off) XPSTURBO="1" ;; esac
[[ -z "${XPSTURBO}" ]] && \
case "${2}" in \
on|performance) XPSTURBO="0"; SHIFT="2" ;; \
off|powersave) XPSTURBO="1"; SHIFT="2" ;; esac
[[ -z "${XPSTURBO}" ]] && \
printf "${0} turbo {on,off} - Intel P-State Turbo\n" || \
[[ -f /sys/devices/system/cpu/intel_pstate/no_turbo ]] && \
printf "${XPSTURBO}" > /sys/devices/system/cpu/intel_pstate/no_turbo &
[[ -n "${SHIFT}" ]] && shift "${SHIFT}" || shift
wait
unset XPSTURBO SHIFT
ht*)
case "${1}" in \
ht-on) HYPERTHREADS="1" ;; \
ht-off) HYPERTHREADS="0" ;; esac
[[ -z "${HYPERTHREADS}" ]] && \
case "${2}" in \
on|performance) HYPERTHREADS="1"; SHIFT="2" ;; \
off|powersave) HYPERTHREADS="0"; SHIFT="2" ;; esac
[[ -z "${HYPERTHREADS}" ]] && \
printf "${0} ht {on,off} - Hyperthreads\n" || \
for i in /sys/devices/system/cpu/cpu*/online; do [[ -f "${i}" ]] && \
[[ "$(printf "${i}" | tr -cd [:digit:])" -ge "${CORES}" ]] && \
printf "${HYPERTHREADS}" > "${i}" & done &
[[ -n "${SHIFT}" ]] && shift "${SHIFT}" || shift
wait
unset HYPERTHREADS SHIFT
gpu*)
case "${1}" in \
gpu-full) NVPM="1" ;; \
gpu-cut) NVPM="0" ;; esac
[[ -z "${NVPM}" ]] && \
case "${2}" in \
full|performance) NVPM="1"; SHIFT="2" ;; \
cut|powersave) NVPM="0"; SHIFT="2" ;; esac
[[ -z "${NVPM}" ]] && \
printf "${0} gpu {cut,full} - GPU runtime powersaving (only Nvidia ATM)\n" || \
[[ -z "$(command -v nvidia-settings)" ]] && \
printf "nvidia-settings not found; only nvidia currently supported" || \
DISPLAY=":0.0" nvidia-settings -a [gpu:0]/GPUPowerMizerMode="${NVPM}" > /dev/null &
[[ -n "${SHIFT}" ]] && shift "${SHIFT}" || shift
wait
unset NVPM SHIFT
check)
printf "\nCPU Governor\n/sys/bus/cpu/drivers/processor/cpu*/cpufreq/scaling_governor\n"
for i in /sys/bus/cpu/drivers/processor/cpu*/cpufreq/scaling_governor; do [[ -f "${i}" ]] && \
printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/bus/cpu/drivers/processor/||g; s|/.*||g; N;s|\n|\t|'
[[ -f /sys/devices/system/cpu/intel_pstate/no_turbo ]] && \
printf "\nDisable Intel P-State Turbo\n/sys/devices/system/cpu/intel_pstate/no_turbo\n"; \
printf "no_turbo\n$(cat /sys/devices/system/cpu/intel_pstate/no_turbo)\n" | sed 'N;s|\n|\t|'
printf "\nHyperthreads\n/sys/devices/system/cpu/cpu*/online\n"
for i in /sys/devices/system/cpu/cpu*/online; do [[ -f "${i}" ]] && \
[[ $(printf "${i}" | tr -cd [:digit:]) -ge "$CORES" ]] && \
printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/devices/system/cpu/||g; s|/.*||g; N;s|\n|\t|'
[[ -z "$(command -v x86_energy_perf_policy)" ]] && \
printf "\nEnergy Perf Bias\n" && \
x86_energy_perf_policy -r #SUID
printf "\nVirtual Memory (Swap)\n/proc/sys/vm/\n"
printf "laptop_mode\t$(cat /proc/sys/vm/laptop_mode)\n"
printf "dirty_writeback_centisecs\t$(cat /proc/sys/vm/dirty_writeback_centisecs)\n"
printf "dirty_expire_centisecs\t$(cat /proc/sys/vm/dirty_expire_centisecs)\n"
[[ -f /proc/sys/kernel/watchdog ]] && \
printf "\nNMI watchdog\n" && \
printf "/proc/sys/kernel/watchdog\t$(cat /proc/sys/kernel/watchdog)\n"
printf "\nSATA link power management\n/sys/class/scsi_host/host*/link_power_management_policy\n"
for i in /sys/class/scsi_host/host*/link_power_management_policy; do [[ -f "${i}" ]] && \
printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/class/scsi_host/||g; s|/.*||g; N;s|\n|\t|'
[[ -n "$(command -v hdparm)" ]] && \
printf "\nHard drives\n/dev/[hs]d[a-z]\n" && \
hdparm -B -M /dev/[hs]d[a-z] 2> /dev/null | sed 'N;s|\n||g; s|/dev/||g; s|\t| |g;' #SUID
printf "\nRuntime power management\n/sys/{class,bus}/*/{*,devices/*}/power/control\n"
for i in /sys/{class,bus}/*/{*,devices/*}/power/control; do [[ -f "${i}" ]] && \
printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/class/||g; s|/sys/bus/||g; s|/devices||g; s|/power/control||g; N;s|\n|\t|'
printf "\nUSB Autosuspend (may disable some older devices!)\n/sys/bus/usb/devices/*/power/autosuspend{,_delay_ms}\n"
for i in /sys/bus/usb/devices/*/power/autosuspend{,_delay_ms}; do [[ -f "${i}" ]] && \
printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/bus/usb/devices/||g; s|/.*||g; N;s|\n|\t|'
printf "\nPower saving for modules\n/sys/module/*/parameters/power_save{,_controller}\n"
for i in /sys/module/*/parameters/power_save{,_controller}; do [[ -f "${i}" ]] && \
printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/module/||g; s|/parameters/.*||g; s|/.*||g; N;s|\n|\t|'
printf "\nNetwork device powersaving\n/sys/class/net/{wl*,e*,*/device/power/wakeup}\n";
[[ -n "$(command -v iw)" ]] && \
for i in /sys/class/net/wl*; do [[ -d "${i}" ]] && \
printf "${i}\n$(iw dev $(printf ${i} | sed 's/^.*wl/wl/') get power_save)"; done | sed 's|^\t| |g;s|/sys/class/net/||g; s|/.*||g'
[[ -n "$(command -v ethtool)" ]] && \
for i in /sys/class/net/e*; do [[ -d "${i}" ]] && \
printf "${i}\n$(ethtool $(printf ${i} | sed 's/^.*e/e/') | grep Wake-on)"; done | sed 's|^\t| |g;s|/sys/class/net/||g; s|/.*||g'
for i in /sys/class/net/*/device/power/wakeup; do [[ -f "${i}" ]] && \
printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/class/net/||g; s|/device/power/wakeup||g; s|/.*||g; N;s|\n|\t|'
printf "\nLEDs\n/sys/class/leds/*/brightness\n"
for i in /sys/class/leds/*/brightness; do [[ -f "${i}" ]] && \
printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/class/leds/||g; s|/brightness||g; s|/.*||g; N;s|\n|\t|'
[[ -n "$(command -v nvidia-settings)" ]] && \
printf "\nNvidia PowerMizer\n" && \
DISPLAY=":0.0" nvidia-settings -q [gpu:0]/GPUPowerMizerMode | grep "Attribute" | sed 's|.*\[||g;s|\]):||g;s| |\t|g;s|\.$||g'
shift
*|help)
[[ ! "${1}" == "help" ]] && \
printf "Invalid input: $@\n"
printf "\nRuntime power management:\n"
printf "${0} {cut,full} - system-wide runtime powersaving\n"
printf "${0} check - inspect runtime powersaving\n"
printf "\nExtras:\n"
printf "${0} gov {cut,full} - CPU Governor\n"
printf "${0} turbo {on,off} - Intel P-State Turbo\n"
printf "${0} ht {on,off} - Hyperthreads\n"
printf "${0} gpu {cut,full} - GPU runtime powersaving (only Nvidia ATM)\n"
printf "\nOptions can take {performace,powersave} and are stackable:\n"
printf "\n${0} powersave gov full turbo on gpu full ht on check\n"
exit
esac
done
For maximum effectivenes, it's best to apply the settings to new devices immediately with udev. Not all of the powersaving options are accessible from udev directly. These rules enable most of the powersaving settings on boot and for all newly connected devices. I'm not quite satisfied with this, so it isn't currently packaged with indicator-powersave.
/etc/udev/rules.d/runtime-pm.rules
## Whitelisted Actions
ACTION!="add", GOTO="runtime_pm_rules_end"
## Blacklisted Devices (USB Keyboard/Mouse, etc.)
# Logitec Unifying Reciever (occasionally disabled ?)
ATTR{idVendor}=="046d", ATTR{idProduct}=="c52b", GOTO="runtime_pm_rules_end"
# Standard Microsystems Corp. 2 Port Hub (doesn't charge with runtime pm ?)
ATTR{idVendor}=="0424", ATTR{idProduct}=="a700", GOTO="runtime_pm_rules_end"
# Charge Sixaxis/Dualshock 3 (disconnect or charge too slowly with runtime pm ?)
ATTR{idVendor}=="054c", ATTR{idProduct}=="0268", GOTO="runtime_pm_rules_end"
# Hard disk power saving
SUBSYSTEM=="scsi_host", KERNEL=="host*", ATTR{link_power_management_policy}="min_power"
KERNEL=="[hs]d[a-z]", ATTR{queue/rotational}=="1", RUN+="/usr/bin/hdparm -B 1 -M 128 /dev/%k"
# Various subsystems runtime power management
SUBSYSTEMS=="*", ATTR{power/control}=="on", ATTR{power/control}="auto"
# USB autosuspend devices after 1 sec (may disable some old devices!)
SUBSYSTEM=="usb", TEST=="power/autosuspend", ATTR{power/autosuspend}="1"
SUBSYSTEM=="usb", TEST=="power/autosuspend_delay_ms", ATTR{power/autosuspend_delay_ms}="1"
# Various subsystems power saving
SUBSYSTEMS=="*", TEST=="parameters/power_save", ATTR{parameters/power_save}="1"
SUBSYSTEMS=="*", ATTR{parameters/power_save_controller}=="N", ATTR{parameters/power_save_controller}="Y"
# D3 Cold
DRIVER=="*", ATTR{d3cold_allowed}=="0", ATTR{d3cold_allowed}="1"
# Network Powersaving
SUBSYSTEM=="net", KERNEL=="wl*", RUN+="/usr/bin/iw dev %k set power_save on"
SUBSYSTEM=="net", KERNEL=="e*", RUN+="/usr/sbin/ethtool -s %k wol d"
SUBSYSTEM=="net", TEST=="device/power/wakeup", ATTR{device/power/wakeup}="disabled"
# Reduce LED Brightness
SUBSYSTEM=="leds", TEST=="brightness", ATTR{brightness}="0"
# Exit
LABEL="runtime_pm_rules_end"
Settings that require modifying unique configuration files and on/off only switches have been intentionally omitted.
Settings for proprietary and OEM devices are being added as needed (on the hardware I have; open to suggestions for more!).
::UPDATE::
Massive under-the-hood improvements for throttle:
-All external tools are now optional; missing tools will be skipped over.
-Option stacking works as advertised (among other code improvements).
-Better option style: "option setting" eg "ht on" The old style still works too, ie "ht-on" as still used by indicator-powersave, and all options can take {performance,powersave}.
Throttle cut systemd service: throttle-cut.service (disabled by default)
indicator-powersave's "GPU Throttle" menu still does not work for no logical reason. throttle gpu {full,cut} works.
Last edited by quequotion (2015-05-10 04:55:12)

ooo wrote:you can use udev rules, sysctl.d, tmpfiles.d and/or modprobe.d to enable all of those settings. Then you wouldn't need to write any additional systemd services.
Thanks! This will be best for making sure the system starts up in low power mode (udev rules probably take effect earlier than my systemd service would). Still need to work on a way to toggle all of them on and off. Something like "systemctl start/stop runtime-pm"... Maybe I can have it toggle the powersave mode through udev?
Then use a script if you need to disable some of the settings to maximize performance when needed.
or you can write systemd service that simply runs the powersaving script.
This may be what I'm looking for.
you can disable nmi watchdog via sysctl or kernel command line
These days I compile the kernel without watchdog support, but a good idea no less.
There are also some additional power saving possibilities for your HD, although they may not be best suited for desktop hard drives.
I have four SATA II drives in a 2TB RAID:0 array... if they have powersaving options I'll give them a shot.
Also, PowerTOP HTML report:
<!DOCTYPE html>
<html lang='en'>
<head>
<title>PowerTOP report</title>
<meta http-equiv='content-type' content='text/html;charset=utf-8'>
<script type='text/javascript'>
var powertop = {
blocks: {
summary: 'Summary',
cpuidle: 'CPU Idle',
cpufreq: 'CPU Frequency',
software: 'Software Info',
devinfo: 'Device Info',
tuning: 'Tuning',
ahci: 'AHCI'
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('main_menu');
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'>
/* General CSS */
margin:0px;
padding:0px;
body {
background-color: #eee; /* Background color */
color: #222; /* Font color */
font-family: Helvetica;
font-size: 14px;
#main_container{
width: 960px;
margin: 2px auto;
/* Top logo & system table css */
#main_header{
min-width: 960px;
display:block;
img.pwtop_logo{
float:left;
height:40%;
width: 40%;
padding:20px;
.sys_info
float: left;
height:116px;
width:450px;
font-size: 12px;
display: inline;
position relative;
text-align: left;
th{
text-align: left;
/* CSS Main Content */
.content_title
color: #296629;
padding:0px;
margin:2px;
#chart_div{
float: left;
.small
font-size: 10px;
table.emphasis2
font-size: 13px;
max-width:95%;
th.emph_title {
padding:5px;
tr.emph1:nth-child(odd) {
background: #ffffff;
tr.emph1:nth-child(even) {
background: #ebebeb;
tr.tune:nth-child(odd) {
background: #fffcfc;
tr.tune:nth-child(even) {
background: #fff0f0;
td.no_wrap:first-child {
white-space:nowrap;
.side_by_side_left{
float:left;
.side_by_side_right{
float:right;
#device{
display: inline-block;
.clear_block{
clear:both;
td.package{
background-color: #e0ddfa; /*purple*/
td.core{
background-color: #d1ddff; /*ccebff; /*blue*/
td.cpu{
background-color: #ffffeb; /* yellow */
th.title{
text-align: center;
/*border-bottom: 1px solid #666;*/
li.summary_list
display: inline;
padding: 5px;
background-color: #f6f6f9;
font-size: 12px;
/* main menu css*/
#main_menu {
display: inline-block;
font-weight: bold;
padding: 5px 0;
text-align: center;
background-image: -webkit-gradient(linear, left top, left bottom,
from(#aaa), to(#eee));
background: -moz-linear-gradient(top, #aaa, #eee);
#main_menu div {
font-size: 12px;
font-weight: bold;
color: white;
#main_menu div.nav_button {
margin: 0 0.2em;
display: inline;
cursor: pointer;
color: #223232;
font-size: 13px;
font-weight: bold;
padding: 5px;
text-align: center;
text-decoration: none;
div.pressed {
border: -webkit-gradient(linear, left top, left bottom,
from(#b2ffb2), to(#e0ffe0));
border-width:0px 8px 0px 8px;
background: #999;
background-image: -webkit-gradient(linear, left top, left bottom,
from(#b2ffb2), to(#e0ffe0));
background: -moz-linear-gradient(top, #b2ffb2, #e0ffe0);
div.hide {
display: none;
</style>
</head>
<body onload='powertop.onload();'>
<div id="main_container">
<header id="main_header">
<img alt="PowerTop" class="pwtop_logo" src="./PowerTop.png"><div class="sys_info">
<h2 class="content_title"> System Information </h2>
<table class="emphasis1">
<tr> <th class="table_sysinfo"> PowerTOP Version </th> <td > v2.6 </td> </tr>
<tr> <th class="table_sysinfo"> Kernel Version </th> <td > Linux version 3.13.6-2-ck </td> </tr>
<tr> <th class="table_sysinfo"> System Name </th> <td > ASRockZ68 Extreme4 Gen3To Be Filled By O.E.M. </td> </tr>
<tr> <th class="table_sysinfo"> CPU Information </th> <td > Intel(R) Core(TM) i7-2700K CPU @ 3.50GHz </td> </tr>
<tr> <th class="table_sysinfo"> OS Information </th> <td > Arch Linux </td> </tr>
</table>
</div>
</header>
<br/><div id="main_menu"> </div>
<div><br/> <ul>
<li class="summary_list"> <b> Target: </b> 1 units/s </li><li class="summary_list"> <b> System: </b> 845.8 wakeup/s </li><li class="summary_list"> <b> CPU: </b> 37.8% usage </li><li class="summary_list"> <b> GPU: </b> 0 ops/s </li><li class="summary_list"> <b> GFX: </b> 226.6 wakeups/s </li><li class="summary_list"> <b> VFS: </b> 0 ops/s </li></ul> </div> <br />
<div id="summary">
<h2 class="content_title"> Top 10 Power Consumers </h2>
<table class="emphasis2">
<tr class="emph1"> <th class="emph_title"> Usage </th> <th class="emph_title"> Events/s </th> <th class="emph_title"> Category </th> <th class="emph_title"> Description </th> </tr>
<tr class="emph1"> <td > 33.4% </td> <td > 332.5 </td> <td > Process </td> <td > /usr/bin/vlc --started-from-file </td> </tr>
<tr class="emph1"> <td > 0.9% </td> <td > 189.6 </td> <td > Process </td> <td > /usr/lib/firefox/firefox </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > </td> <td > Device </td> <td > Audio codec hwC0D0: Realtek </td> </tr>
<tr class="emph1"> <td > 0.1% </td> <td > 83.1 </td> <td > Timer </td> <td > tick_sched_timer </td> </tr>
<tr class="emph1"> <td > 0.1% </td> <td > 57.6 </td> <td > Process </td> <td > compton --dbus </td> </tr>
<tr class="emph1"> <td > 0.1% </td> <td > 56.3 </td> <td > Timer </td> <td > hrtimer_wakeup </td> </tr>
<tr class="emph1"> <td > 0.9% </td> <td > 47.2 </td> <td > Process </td> <td > /usr/bin/pulseaudio --start </td> </tr>
<tr class="emph1"> <td > 0.3% </td> <td > 27.2 </td> <td > Interrupt </td> <td > [6] tasklet(softirq) </td> </tr>
<tr class="emph1"> <td > 0.0% </td> <td > 8.9 </td> <td > Interrupt </td> <td > [58] snd_hda_intel </td> </tr>
<tr class="emph1"> <td > 0.1% </td> <td > 8.1 </td> <td > kWork </td> <td > os_execute_work_item </td> </tr>
</table>
</div>
<div class="clear_block" id="cpuidle">
<h2 class="content_title"> Processor Idle State Report </h2>
<table class="emphasis2 side_by_side_left">
<tr> <th class="title"> Package </th> <th class="title"> 0 </th> </tr>
<tr> <td class="package"> &nbsp; </td> <td class="package"> &nbsp; </td> </tr>
<tr> <td class="package"> &nbsp; </td> <td class="package"> &nbsp; </td> </tr>
<tr> <td class="package"> &nbsp; </td> <td class="package"> &nbsp; </td> </tr>
<tr> <td class="package"> C2 (pc2) </td> <td class="package"> 0.0% </td> </tr>
<tr> <td class="package"> C3 (pc3) </td> <td class="package"> 0.0% </td> </tr>
<tr> <td class="package"> C6 (pc6) </td> <td class="package"> 0.0% </td> </tr>
<tr> <td class="package"> C7 (pc7) </td> <td class="package"> 0.0% </td> </tr>
</table>
<table class="emphasis2 side_by_side_left">
<tr> <th class="title"> </th> <th class="title"> Core 0 </th> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> C3 (cc3) </td> <td class="core"> 2.4% </td> </tr>
<tr> <td class="core"> C6 (cc6) </td> <td class="core"> 61.3% </td> </tr>
<tr> <td class="core"> C7 (cc7) </td> <td class="core"> 0.0% </td> </tr>
<tr> <th class="title"> </th> <th class="title"> Core 1 </th> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> C3 (cc3) </td> <td class="core"> 1.1% </td> </tr>
<tr> <td class="core"> C6 (cc6) </td> <td class="core"> 54.1% </td> </tr>
<tr> <td class="core"> C7 (cc7) </td> <td class="core"> 0.0% </td> </tr>
<tr> <th class="title"> </th> <th class="title"> Core 2 </th> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> C3 (cc3) </td> <td class="core"> 2.2% </td> </tr>
<tr> <td class="core"> C6 (cc6) </td> <td class="core"> 76.9% </td> </tr>
<tr> <td class="core"> C7 (cc7) </td> <td class="core"> 0.0% </td> </tr>
<tr> <th class="title"> </th> <th class="title"> Core 3 </th> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> C3 (cc3) </td> <td class="core"> 1.8% </td> </tr>
<tr> <td class="core"> C6 (cc6) </td> <td class="core"> 85.9% </td> </tr>
<tr> <td class="core"> C7 (cc7) </td> <td class="core"> 0.0% </td> </tr>
</table>
<table class="emphasis2 side_by_side_left">
<tr> <th class="title"> &nbsp; </th> <th class="title"> CPU </th> <th class="title"> 0 </th> <th class="title"> CPU </th> <th class="title"> 4 </th> </tr>
<tr> <th class="title"> C0 active </th> <td class="cpu"> 25.1% </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> 9.2% </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> POLL </th> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> </tr>
<tr> <th class="title"> C1E-SNB </th> <td class="cpu"> 6.6% </td> <td class="cpu"> 1.1 ms </td> <td class="cpu"> 0.9% </td> <td class="cpu"> 1.3 ms </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> C3-SNB </th> <td class="cpu"> 1.6% </td> <td class="cpu"> 0.7 ms </td> <td class="cpu"> 0.2% </td> <td class="cpu"> 0.8 ms </td> </tr>
<tr> <th class="title"> C6-SNB </th> <td class="cpu"> 67.9% </td> <td class="cpu"> 2.0 ms </td> <td class="cpu"> 89.1% </td> <td class="cpu"> 10.5 ms </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> &nbsp; </th> <th class="title"> CPU </th> <th class="title"> 1 </th> <th class="title"> CPU </th> <th class="title"> 5 </th> </tr>
<tr> <th class="title"> C0 active </th> <td class="cpu"> 25.4% </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> 8.1% </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> POLL </th> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> </tr>
<tr> <th class="title"> C1E-SNB </th> <td class="cpu"> 9.8% </td> <td class="cpu"> 2.0 ms </td> <td class="cpu"> 3.4% </td> <td class="cpu"> 5.5 ms </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> C3-SNB </th> <td class="cpu"> 0.9% </td> <td class="cpu"> 0.6 ms </td> <td class="cpu"> 0.1% </td> <td class="cpu"> 0.5 ms </td> </tr>
<tr> <th class="title"> C6-SNB </th> <td class="cpu"> 59.8% </td> <td class="cpu"> 2.1 ms </td> <td class="cpu"> 88.9% </td> <td class="cpu"> 13.5 ms </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> &nbsp; </th> <th class="title"> CPU </th> <th class="title"> 2 </th> <th class="title"> CPU </th> <th class="title"> 6 </th> </tr>
<tr> <th class="title"> C0 active </th> <td class="cpu"> 15.4% </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> 4.6% </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> POLL </th> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> </tr>
<tr> <th class="title"> C1E-SNB </th> <td class="cpu"> 1.8% </td> <td class="cpu"> 1.0 ms </td> <td class="cpu"> 0.4% </td> <td class="cpu"> 1.1 ms </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> C3-SNB </th> <td class="cpu"> 0.7% </td> <td class="cpu"> 0.7 ms </td> <td class="cpu"> 0.7% </td> <td class="cpu"> 13.5 ms </td> </tr>
<tr> <th class="title"> C6-SNB </th> <td class="cpu"> 82.7% </td> <td class="cpu"> 4.0 ms </td> <td class="cpu"> 92.5% </td> <td class="cpu"> 20.9 ms </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> &nbsp; </th> <th class="title"> CPU </th> <th class="title"> 3 </th> <th class="title"> CPU </th> <th class="title"> 7 </th> </tr>
<tr> <th class="title"> C0 active </th> <td class="cpu"> 8.7% </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> 2.5% </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> POLL </th> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> </tr>
<tr> <th class="title"> C1E-SNB </th> <td class="cpu"> 0.8% </td> <td class="cpu"> 0.8 ms </td> <td class="cpu"> 0.2% </td> <td class="cpu"> 1.4 ms </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
<tr> <th class="title"> C3-SNB </th> <td class="cpu"> 0.8% </td> <td class="cpu"> 1.0 ms </td> <td class="cpu"> 0.2% </td> <td class="cpu"> 8.6 ms </td> </tr>
<tr> <th class="title"> C6-SNB </th> <td class="cpu"> 88.2% </td> <td class="cpu"> 7.6 ms </td> <td class="cpu"> 97.8% </td> <td class="cpu"> 28.3 ms </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
</table>
</div>
<div class="clear_block" id="cpufreq">
<h2 class="content_title"> Processor Frequency Report </h2>
<table class="emphasis2 side_by_side_left">
<tr> <th class="title"> Package </th> <th class="title"> 0 </th> </tr>
<tr> <td class="package"> &nbsp; </td> <td class="package"> &nbsp; </td> </tr>
<tr> <td class="package"> Idle </td> <td class="package"> 100.0% </td> </tr>
</table>
<table class="emphasis2 side_by_side_left">
<tr> <th class="title"> </th> <th class="title"> Core 0 </th> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> Idle </td> <td class="core"> 100.0% </td> </tr>
<tr> <th class="title"> </th> <th class="title"> Core 1 </th> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> Idle </td> <td class="core"> 100.0% </td> </tr>
<tr> <th class="title"> </th> <th class="title"> Core 2 </th> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> Idle </td> <td class="core"> 100.0% </td> </tr>
<tr> <th class="title"> </th> <th class="title"> Core 3 </th> </tr>
<tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
<tr> <td class="core"> Idle </td> <td class="core"> 100.0% </td> </tr>
</table>
<table class="emphasis2 side_by_side_left">
<tr> <th class="title"> &nbsp; </th> <th class="title"> CPU 0 </th> <th class="title"> CPU 4 </th> </tr>
<tr> <th class="title"> Actual </th> <td class="cpu"> 4.7 GHz </td> <td class="cpu"> 4.8 GHz </td> </tr>
<tr> <th class="title"> Idle </th> <td class="cpu"> 100.0% </td> <td class="cpu"> 100.0% </td> </tr>
<tr> <th class="title"> &nbsp; </th> <th class="title"> CPU 1 </th> <th class="title"> CPU 5 </th> </tr>
<tr> <th class="title"> Actual </th> <td class="cpu"> 4.8 GHz </td> <td class="cpu"> 4.8 GHz </td> </tr>
<tr> <th class="title"> Idle </th> <td class="cpu"> 100.0% </td> <td class="cpu"> 100.0% </td> </tr>
<tr> <th class="title"> &nbsp; </th> <th class="title"> CPU 2 </th> <th class="title"> CPU 6 </th> </tr>
<tr> <th class="title"> Actual </th> <td class="cpu"> 4.8 GHz </td> <td class="cpu"> 4.8 GHz </td> </tr>
<tr> <th class="title"> Idle </th> <td class="cpu"> 100.0% </td> <td class="cpu"> 100.0% </td> </tr>
<tr> <th class="title"> &nbsp; </th> <th class="title"> CPU 3 </th> <th class="title"> CPU 7 </th> </tr>
<tr> <th class="title"> Actual </th> <td class="cpu"> 4.8 GHz </td> <td class="cpu"> 4.8 GHz </td> </tr>
<tr> <th class="title"> Idle </th> <td class="cpu"> 100.0% </td> <td class="cpu"> 100.0% </td> </tr>
<tr> <th class="title"> </th> <th class="title"> </th> <th class="title"> </th> </tr>
<tr> <th class="title"> </th> <td class="cpu"> </td> <td class="cpu"> </td> </tr>
<tr> <th class="title"> </th> <td class="cpu"> </td> <td class="cpu"> </td> </tr>
<tr> <th class="title"> </th> <th class="title"> </th> <th class="title"> </th> </tr>
</table>
</div>
<div class="clear_block" id="software">
<h2 class="content_title"> Overview of Software Power Consumers </h2>
<table class="emphasis2">
<tr class="emph1"> <th class="emph_title"> Usage </th> <th class="emph_title"> Wakeups/s </th> <th class="emph_title"> GPU ops/s </th> <th class="emph_title"> Disk IO/s </th> <th class="emph_title"> GFX Wakeups/s </th> <th class="emph_title"> Category </th> <th class="emph_title"> Description </th> </tr>
<tr class="emph1"> <td class="no_wrap"> 334.2 ms/s </td> <td class="no_wrap"> 332.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 11.3 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/vlc --started-from-file </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 9.4 ms/s </td> <td class="no_wrap"> 189.6 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 154.8 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/firefox/firefox </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.9 ms/s </td> <td class="no_wrap"> 83.1 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> tick_sched_timer </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 1.5 ms/s </td> <td class="no_wrap"> 57.6 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 60.3 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> compton --dbus </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 550.5 us/s </td> <td class="no_wrap"> 56.3 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> hrtimer_wakeup </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 9.0 ms/s </td> <td class="no_wrap"> 47.2 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/pulseaudio --start </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 3.4 ms/s </td> <td class="no_wrap"> 27.2 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [6] tasklet(softirq) </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 303.4 us/s </td> <td class="no_wrap"> 8.9 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [58] snd_hda_intel </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 643.7 us/s </td> <td class="no_wrap"> 8.1 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> os_execute_work_item </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 24.7 us/s </td> <td class="no_wrap"> 5.6 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [pt1] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 12.8 ms/s </td> <td class="no_wrap"> 0.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/sbin/X :0 -auth /run/lightdm/root/:0 -nolisten tcp vt1 -novtswitch </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 102.4 us/s </td> <td class="no_wrap"> 5.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/tor -f /etc/tor/torrc </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 12.9 us/s </td> <td class="no_wrap"> 4.9 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [usb-storage] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 72.1 us/s </td> <td class="no_wrap"> 2.8 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [4] block(softirq) </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 12.0 us/s </td> <td class="no_wrap"> 2.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [rcu_preempt] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 25.0 us/s </td> <td class="no_wrap"> 2.0 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> mono /usr/lib/glippy/glippy.exe </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 109.7 us/s </td> <td class="no_wrap"> 1.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> pantheon-files </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 194.3 us/s </td> <td class="no_wrap"> 1.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/indicator-sound/indicator-sound-service </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 220.8 us/s </td> <td class="no_wrap"> 1.3 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/gnome-settings-daemon/gnome-settings-daemon </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 564.6 us/s </td> <td class="no_wrap"> 0.7 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> disk_events_workfn </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 39.9 us/s </td> <td class="no_wrap"> 0.8 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [16] ehci_hcd:usb3 </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 1.7 ms/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [64] nvidia </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 5.3 us/s </td> <td class="no_wrap"> 0.7 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> ehci_hrtimer_func </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 1.2 us/s </td> <td class="no_wrap"> 0.7 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> blk_delay_work </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 361.3 us/s </td> <td class="no_wrap"> 0.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> indicator-sensors </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 14.7 us/s </td> <td class="no_wrap"> 0.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> pci_pme_list_scan </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 4.7 us/s </td> <td class="no_wrap"> 0.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/sixad-bin 0 0 0 </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 73.0 us/s </td> <td class="no_wrap"> 0.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/python2 /usr/bin/indicator-cpufreq </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 5.1 us/s </td> <td class="no_wrap"> 0.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/httpd -f /usr/share/gnome-user-share/dav_user_2.4.conf -C Listen 49076 </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 62.0 us/s </td> <td class="no_wrap"> 0.3 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [9] RCU(softirq) </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 35.5 us/s </td> <td class="no_wrap"> 0.25 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/sbin/thermald --no-daemon --dbus-enable </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 5.3 us/s </td> <td class="no_wrap"> 0.25 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/contractor </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 535.4 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [1] timer(softirq) </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 7.9 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 0.2 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> xscreensaver -no-splash </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 6.5 us/s </td> <td class="no_wrap"> 0.20 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> slingshot-launcher --silent </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 89.9 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/dbus-daemon --fork --print-pid 4 --print-address 6 --session </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 40.2 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 0.1 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> pantheon-terminal </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 5.8 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/NetworkManager --no-daemon </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 4.9 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> openbox </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 147.8 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/preload --foreground --verbose 1 </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 8.4 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/0] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 2.9 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> zeitgeist-datahub </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 1.0 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> push_to_pool </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.9 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [khugepaged] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.2 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> neigh_periodic_work </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 230.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> intel_pstate_timer_func </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 222.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> powertop --html=runtime-pm.html </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 21.2 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/4] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 16.0 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/2] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 142.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [8] hrtimer(softirq) </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 12.9 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> bdi_writeback_workfn </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 4.1 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [jbd2/md126p2-8] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 1.8 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/systemd/systemd-hostnamed </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 1.6 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/accountsservice/accounts-daemon </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 1.4 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/indicator-datetime/indicator-datetime-service </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> check_corruption </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.7 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/GConf/gconfd-2 </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.6 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> submit_flushes </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 117.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> tg3_timer </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 37.1 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [16] ivtv0 </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 33.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [56] SATA controller </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 30.6 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> delayed_work_timer_fn </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 30.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> process_timeout </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 26.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> nvidia_rc_timer </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 25.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/3] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 20.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/0:2] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 19.9 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> vmstat_update </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 17.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/5] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 16.9 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> super-wingpanel </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 13.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/6] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 9.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/7] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 8.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/bamf/bamf/bamfdaemon </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 6.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:3] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 6.4 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> bfq_idle_slice_timer </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 6.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/1] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 5.6 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> clocksource_watchdog </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 4.6 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/4:2] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 4.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/3:0] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 4.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /sbin/init </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 4.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:1] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 4.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/5:1] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 3.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/6:0] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 3.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/7:2] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 3.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:2] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 2.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:4] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 2.1 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> plank </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.9 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:1H] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> md_submit_flush_data </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> dev_watchdog </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/1:1] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> it_real_fn </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/0:1H] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.6 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> writeout_period </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [2] net tx(softirq) </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.4 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> __prandom_timer </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> blk_rq_timed_out_timer </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/u16:0] </td> </tr>
<tr class="emph1"> <td class="no_wrap"> 0.1 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> commit_timeout </td> </tr>
<tr class="emph1"> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> </tr>
<tr class="emph1"> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> </tr>
</table>
</div>
<div id="devinfo">
<h2 class="content_title"> Device Power Report </h2>
<table class="emphasis2 side_by_side_left">
<tr class="emph1"> <th class="emph_title"> Usage </th> <th class="emph_title"> Device Name </th> </tr>
<tr class="emph1"> <td > 37.8% </td> <td > CPU core </td> </tr>
<tr class="emph1"> <td > 37.8% </td> <td > CPU misc </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > Audio codec hwC0D0: Realtek </td> </tr>
<tr class="emph1"> <td > 0.0 ops/s </td> <td > GPU core </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > Display backlight </td> </tr>
<tr class="emph1"> <td > 0.0 ops/s </td> <td > GPU misc </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > PCI Device: PLX Technology, Inc. PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > PCI Device: Internext Compression Inc iTVC16 (CX23416) Video Decoder </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > PCI Device: PLX Technology, Inc. PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > PCI Device: PLX Technology, Inc. PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > PCI Device: PLX Technology, Inc. PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > PCI Device: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > PCI Device: Xilinx Corporation Device 222a </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > USB device: EHCI Host Controller </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > USB device: Mass Storage Device (Generic ) </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > USB device: F-01F (Fujitsu) </td> </tr>
<tr class="emph1"> <td > 100.0% </td> <td > USB device: U

Similar Messages

  • Lan connectivity Issue on autonomous AP with throttles

              Hello,
      I encounter a strange problem on several AP 1242 in version 12.4(25d)JA1 of a customer :
      He has 10 autonomous AP covering a factory and is using them for laptop connectivity and TOIP with mainly 7921 Cisco Wifi Phones.
      The phones are configured to use only 802.11a.
      The APs loose LAN connectivity randomly and therefore the clients don't work anymore.
      The AP are connected on a 2960 and a 3560 wich are in turn connected on a 3750 wich route the trafic.
      After checking spanning-tree no loops are present.
      When I check the counters on the AP involved I see the "trhottles" and "ignored" counters incrementing on the fa0 link of the AP impacted wich mean I think it can't handle the incoming traffic. This incoming traffic seems not to be too big however. I can see drops on the switch interface connecting the AP.
    There is a lot of roaming on the AP due to people walking in the factory with their wifi phones.
    Here is a view of the fa0 counters :
    AP1242-LOGIST#sh int fa0
    FastEthernet0 is up, line protocol is up
      Hardware is PowerPCElvis Ethernet, address is 001d.a1ce.26e2 (bia 001d.a1ce.26e2)
      MTU 1500 bytes, BW 100000 Kbit/sec, DLY 100 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation ARPA, loopback not set
      Full-duplex, 100Mb/s, MII
      ARP type: ARPA, ARP Timeout 04:00:00
      Last input 00:00:00, output 00:00:00, output hang never
      Last clearing of "show interface" counters never
      Input queue: 0/160/0/0 (size/max/drops/flushes); Total output drops: 0
      Queueing strategy: fifo
      Output queue: 0/40 (size/max)
      5 minute input rate 81000 bits/sec, 53 packets/sec
      5 minute output rate 29000 bits/sec, 26 packets/sec
         7447113 packets input, 674891974 bytes
         Received 286839 broadcasts, 0 runts, 0 giants, 549631 throttles
         0 input errors, 0 CRC, 0 frame, 0 overrun, 549631 ignored
         0 watchdog
         0 input packets with dribble condition detected
         4422100 packets output, 609868806 bytes, 0 underruns
         0 output errors, 0 collisions, 4 interface resets
         1 unknown protocol drops
         0 babbles, 0 late collision, 0 deferred
         0 lost carrier, 0 no carrier
         0 output buffer failures, 0 output buffers swapped out
      Here is a small part of logs concerning roaming, i don't see errors or log indicating that something is wrong nor in the switches log :
    Jun  6 12:57:27.007: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP001E4A3EE15D 001e.4a3e.e15d Associated KEY_MGMT[WPAv2 PSK]
    Jun  6 12:57:42.499: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP588D09D3A92B 588d.09d3.a92b Reassociated KEY_MGMT[WPAv2 PSK]
    Jun  6 12:58:02.620: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 588d.09d3.a92b Reason: Sending station has left the BSS
    Jun  6 12:58:03.653: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP588D09D3A92B 588d.09d3.a92b Reassociated KEY_MGMT[WPAv2 PSK]
    Jun  6 12:59:15.564: %DOT11-6-ROAMED: Station 588d.09d3.a92b Roamed to 001e.134c.5a50
    Jun  6 12:59:15.564: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 588d.09d3.a92b Reason: Sending station has left the BSS
    Jun  6 12:59:41.905: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 442b.0355.ab28 Reason: Previous authentication no longer valid
    Jun  6 12:59:54.728: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP442B0355AB28 442b.0355.ab28 Associated KEY_MGMT[WPAv2 PSK]
    Jun  6 13:01:12.541: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP588D09D3A92B 588d.09d3.a92b Reassociated KEY_MGMT[WPAv2 PSK]
    Jun  6 13:02:35.841: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 001e.4a3e.d875 Reason: Previous authentication no longer valid
    Jun  6 13:02:36.489: %DOT11-6-ASSOC: Interface Dot11Radio0, Station   ec85.2f7c.c837 Associated KEY_MGMT[WPAv2 PSK]
    Jun  6 13:03:29.256: %DOT11-6-ROAMED: Station 588d.09d3.a92b Roamed to 001e.134c.5a50
    Jun  6 13:03:29.256: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 588d.09d3.a92b Reason: Sending station has left the BSS
    Jun  6 13:04:32.754: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP001E4A3ED875 001e.4a3e.d875 Associated KEY_MGMT[WPAv2 PSK]
    Jun  6 13:06:47.858: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 001e.4a3e.e15d Reason: Previous authentication no longer valid
    Jun  6 13:07:18.107: %DOT11-6-ROAMED: Station 001f.6c7a.5101 Roamed to 001d.a2bb.15b0
    Jun  6 13:07:18.107: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 001f.6c7a.5101 Reason: Sending station has left the BSS
    Jun  6 13:07:38.109: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP588D09D3A92B 588d.09d3.a92b Reassociated KEY_MGMT[WPAv2 PSK]
    Jun  6 13:07:42.031: %DOT11-6-ROAMED: Station 588d.09d3.a92b Roamed to 001e.134c.5a50
    Jun  6 13:07:42.031: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 588d.09d3.a92b Reason: Sending station has left the BSS
    Jun  6 13:07:46.489: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP001F6C7A5101 001f.6c7a.5101 Reassociated KEY_MGMT[WPAv2 PSK]
    Jun  6 13:08:27.712: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP588D09D3A92B 588d.09d3.a92b Reassociated KEY_MGMT[WPAv2 PSK]
    Jun  6 13:08:44.502: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 588d.09d3.a92b Reason: Sending station has left the BSS
    Jun  6 13:08:44.572: %DOT11-6-ASSOC: Interface Dot11Radio1, Station SEP588D09D3A92B 588d.09d3.a92b Associated KEY_MGMT[WPAv2 PSK]
    Jun  6 13:08:56.778: %DOT11-6-ROAMED: Station 588d.09d3.a92b Roamed to 001e.134c.5a50
    Jun  6 13:08:56.779: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 588d.09d3.a92b Reason: Sending station has left the BSS
    Jun  6 13:09:17.874: %DOT11-6-ROAMED: Station 001f.6c7a.5101 Roamed to 003a.9a92.8d70
    Jun  6 13:09:17.874: %DOT11-6-DISASSOC: Interface Dot11Radio1, Deauthenticating Station 001f.6c7a.5101 Reason: Sending station has left the BSS
    The AP are configured as follow :
    Current configuration : 5184 bytes
    ! No configuration change since last restart
    version 12.4
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    hostname AP1242-LOGIST
    logging rate-limit console 9
    aaa new-model
    aaa authentication login default local
    aaa authorization exec default local
    aaa session-id common
    clock timezone gmt+1 1
    clock summer-time gmt recurring last Sun Mar 2:00 last Sun Oct 3:00
    dot11 syslog
    dot11 vlan-name Data vlan 11
    dot11 vlan-name Voix vlan 14
    dot11 vlan-name Webguest vlan 5
    dot11 ssid WLAN_data
       vlan 11
       authentication open
       authentication key-management wpa
       mbssid guest-mode
       wpa-psk ascii 7 10600C0E261B173C252203797479633F371A29
    dot11 ssid WLAN_voice
       vlan 14
       authentication open
       authentication key-management wpa
       mbssid guest-mode
       wpa-psk ascii 7 080F49592A1500203B2D25567A7A7622263C0C
    dot11 ssid Webguest
       vlan 5
       authentication open
       mbssid guest-mode
    dot11 wpa handshake timeout 1000
    dot11 arp-cache
    dot11 priority-map avvid
    dot11 phone
    power inline negotiation prestandard source
    class-map match-all _class_voice0
    match ip dscp ef
    class-map match-all _class_voice1
    match ip dscp cs3
    policy-map voice
    class _class_voice0
      set cos 6
    class _class_voice1
      set cos 3
    bridge irb
    interface Dot11Radio0
    no ip address
    no ip route-cache
    encryption vlan 11 mode ciphers aes-ccm
    encryption vlan 14 mode ciphers aes-ccm
    ssid WLAN_data
    ssid WLAN_voice
    ssid Webguest
    mbssid
    power client 17
    channel 2472
    station-role root
    dot11 qos class voice local
        admission-control
        admit-traffic narrowband max-channel 75 roam-channel 6
    dot11 qos class voice cell
        admission-control
    no cdp enable
    infrastructure-client
    interface Dot11Radio0.5
    encapsulation dot1Q 5
    no ip route-cache
    no cdp enable
    bridge-group 5
    bridge-group 5 subscriber-loop-control
    bridge-group 5 block-unknown-source
    no bridge-group 5 source-learning
    no bridge-group 5 unicast-flooding
    bridge-group 5 spanning-disabled
    interface Dot11Radio0.11
    encapsulation dot1Q 11
    no ip route-cache
    no cdp enable
    bridge-group 11
    bridge-group 11 subscriber-loop-control
    bridge-group 11 block-unknown-source
    no bridge-group 11 source-learning
    no bridge-group 11 unicast-flooding
    bridge-group 11 spanning-disabled
    interface Dot11Radio0.14
    encapsulation dot1Q 14
    no ip route-cache
    no cdp enable
    bridge-group 14
    bridge-group 14 subscriber-loop-control
    bridge-group 14 block-unknown-source
    no bridge-group 14 source-learning
    no bridge-group 14 unicast-flooding
    bridge-group 14 spanning-disabled
    interface Dot11Radio1
    no ip address
    no ip route-cache
    encryption vlan 11 mode ciphers aes-ccm
    encryption vlan 14 mode ciphers aes-ccm
    ssid WLAN_data
    ssid WLAN_voice
    ssid Webguest
    no dfs band block
    mbssid
    channel dfs
    station-role root
    interface Dot11Radio1.5
    encapsulation dot1Q 5
    no ip route-cache
    no cdp enable
    bridge-group 5
    bridge-group 5 subscriber-loop-control
    bridge-group 5 block-unknown-source
    no bridge-group 5 source-learning
    no bridge-group 5 unicast-flooding
    bridge-group 5 spanning-disabled
    interface Dot11Radio1.11
    encapsulation dot1Q 11
    no ip route-cache
    no cdp enable
    bridge-group 11
    bridge-group 11 subscriber-loop-control
    bridge-group 11 block-unknown-source
    no bridge-group 11 source-learning
    no bridge-group 11 unicast-flooding
    bridge-group 11 spanning-disabled
    interface Dot11Radio1.14
    encapsulation dot1Q 14
    no ip route-cache
    no cdp enable
    bridge-group 14
    bridge-group 14 subscriber-loop-control
    bridge-group 14 block-unknown-source
    no bridge-group 14 source-learning
    no bridge-group 14 unicast-flooding
    bridge-group 14 spanning-disabled
    interface FastEthernet0
    no ip address
    no ip route-cache
    speed 100
    full-duplex
    no cdp enable
    hold-queue 160 in
    interface FastEthernet0.1
    encapsulation dot1Q 1 native
    no ip route-cache
    no cdp enable
    bridge-group 1
    no bridge-group 1 source-learning
    bridge-group 1 spanning-disabled
    interface FastEthernet0.5
    encapsulation dot1Q 5
    no ip route-cache
    no cdp enable
    bridge-group 5
    no bridge-group 5 source-learning
    bridge-group 5 spanning-disabled
    interface FastEthernet0.11
    encapsulation dot1Q 11
    no ip route-cache
    no cdp enable
    bridge-group 11
    no bridge-group 11 source-learning
    bridge-group 11 spanning-disabled
    interface FastEthernet0.14
    encapsulation dot1Q 14
    no ip route-cache
    no cdp enable
    bridge-group 14
    no bridge-group 14 source-learning
    bridge-group 14 spanning-disabled
    service-policy input voice
    service-policy output voice
    interface BVI1
    ip address 10.17.10.5 255.255.255.0
    no ip route-cache
    ip default-gateway 10.17.10.254
    ip http server
    ip http authentication aaa
    no ip http secure-server
    ip http help-path http://www.cisco.com/warp/public/779/smbiz/prodconfig/help/eag
    logging trap warnings
    logging 10.15.51.115
    no cdp run
    bridge 1 route ip
    line con 0
    line vty 0 4
    sntp server 10.15.1.50
    sntp broadcast client
    end
    Does someone ever experienced a similar problem ?
    When I shut radio interfaces they're is no more problems on the LAN. Can this be an overlapping coverage issue ?
    Can someone please give me advices on how to troubleshoot this issue ?
    Thank you in advance as I'm a bit stuck.
    Best Regards,

         Hi Scott,
    Thanks for your reply.
    Do you think this can be the origin of the issue my customer encounters or is it only to be standard ? As this change will have to be made on all clients, if there is a chance it solves the problem I will do it ASAP, if not I will delay it in a less busy period :-)
    Can the constant roaming associations and dissasociations overload the AP and make it stop responding on the LAN or is it only a throuhput problem ?
    Thanks in advance for your answer.
    Best Regards,

  • My solution (or so I thought) to Power Manager/CPU throttling problems!!!

    I have found a solution to all my Power Manager/CPU throttling problems!!! Though there is some good and bad news.
    {EDIT: The problem has NOT been fixed, even after latest PowerManager (3.62) and BIOS (1.30) versions. Pretty much ignore anything I say below as the problem is still occurring. You can see my full post here: http://forum.lenovo.com/t5/W-Series-ThinkPad-Laptops/W520-Speedstep-not-working-properly-on-battery-...}
    Good news:  I have NONE of the throttling issues or inconsistent CPU frequency problems I was having before on AC or battery power.  Everything, including TurboBoost on battery works! It is completely fixed! (I have no idea how this factors into Lenovo’s statements that TurboBoost is disabled on battery “by design”. There is at least one other post from someone else that also reported TurboBoost was working for them on battery)
    Bad news: I don’t really know which one of the many things I tried actually worked. I am sorry I wasn’t more methodical about recording what I did and checking results, but this was my last ditch effort to get this fixed on my own without sending the system in for repair and frankly, I didn’t think it would work. Now that it has worked, I’m hoping my steps can help others.
    For anyone interested, here’s what I did… and before anyone says something like “That has nothing to do with managing power/cpu, why would that help?!… etc., please keep in mind I’m just stating exactly what I did. I am aware some of the steps may not be relevant, but who knows… We all know how weird PC’s are sometimes, even the smallest, oddest thing may resolve a problem.So anyway, here goes. 
    **IMPORTANT** Not sure how many noticed, but there was a new version of Power Manager released a few weeks ago, 3.62. The PM driver seems to have stayed the same. That alone could very well be the sole fix, I’m not sure. You may just want to completely remove PM and PM driver and install the latest version before trying any of the steps below.
    1)Made a complete system image via Windows built-in backup feature
    2)Disable any 3rd party fan/CPU control utilities (Throttlestop, etc). Make sure they are also not going to run at startup or from a   scheduled task
    3)Remove Power Manager Driver, then remove Power Manager software
    4)Reboot to Windows
    5)Remove all traces of the Power Manager drivers/software directories (think it was something like C:\readyapps and C:\drivers.) **For some odd reason after I did this, my wireless stopped working but it resolved itself by the time I was done with these steps, strange
    6)Reboot
    7)Access BIOS and reset all settings to default
    8)Boot into Windows, downgrade to BIOS 1.25 [UEFI: 1.25 - 8BET44WW / ECP: 1.14 8AHT32WW ]  via the Windows flash utility. I wanted to downgrade all the way back to 1.06, but the software would throw up some error for any version prior to 1.25 and wouldn’t proceed
    9)Reboot to Windows; make sure system booted w/ out issues
    10)Reboot again, access BIOS, reset to defaults again
    11)Shut down system
    12)Disconnect AC power. Remove main battery. Access and disconnect system backup (a.k.a CMOS) battery under keyboard. Discharge residual power in the system (there are various ways to do this, but you could just leave the battery disconnected for a few minutes).  Visually inspect the system for anything funky…my system had a slightly but noticeably loose CPU/GPU heat sink/fan assembly power connector.
    13)Reconnect backup battery. 
    14)Reconnect AC power but leave main battery disconnected.
    15)Power on. Should get a message indicating “checksum error, system time reset” or something like that.
    16)Reboot to Windows. Verified still okay.
    17)Downloaded latest BIOS version, 1.26. This time I burned the bootable BIOS flash CD instead of running it through Windows.
    18)Restart and boot from disc, flash BIOS to 1.26. Once complete, restart. Verify BIOS set to defaults.
    19)Boot back into Windows.
    20)Install latest Power Manager driver (1.62 ), reboot if/as prompted. Install Power Manager (3.62), reboot as prompted.
    21)Boot into Windows, verified Power Manager was active and working. Verified TurboBoost was working. Restarted system a few times and played around with Power Manager for a bit to see if the different power plans worked and retained the settings, all the while monitoring the Intel TurboBoost utility and PM’s own “power gauges”. Let system Sleep, changed power sources, resumed, etc. Everything was working great.
    22)Shutdown, reconnect main battery. Booted into Windows. Again, fiddled with Power Manager for a bit, switching between power plans and AC/battery power. Still worked great.
    23)Success! 
    That’s it.  Again, this is not a guaranteed fix guide. These are just simply the steps that I took on my system that resolved the problems many of us are having. Hopefully it will work for others.
    T520 4239-CTO | i5 2410M
    W520 4270-CTO | 2720QM | 16GB RAM | Quadro 1000M | BIOS 1.30 | PwrMgr 3.62

    All I basically did was download and install...
    (Chipset driver) http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/oss924ww.exe
    (PM driver)  http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/83ku14ww.exe
    Now, I did chipset first (didnt ask to reboot) then installed the PM driver (did ask to reboot)
    I rebooted.... then I went into bios (1.26) and set everything to default... then restarted saving changes...
    Since I prefer not using optimus I changed the display settings in bios right after saving the default settings...
    Not sure whether or not you really had to go into bios... but everything seems to be working...
    My settings in PM is set to Maximum Power in the Advanced tab,  3rd party monitoring tools is TPFanControl and HWInfo64.... 
    W520 (4270 CTO) | i7-2820QM | 16GB RAM 1333 MHz | Runcore MSATA SSD | 2x Kingston SATA2 SSD | Quadro 2000M | FHD | Windows 7

  • Mac Pro 5,1 Fans full throttle, SMC reset does not help

    Hello Community,
    i have the following issue:
    - Mac Pro 5,1
    - Latest Firmware; no SMC update available
    - Fans (of case, not graphics card) running full throttle as soon as OS X is active (installed or in a installation phase).
    - During boot up, fans run at usual speed/silent.
    - SMC reset (according to: Intel-based Macs: Resetting the System Management Controller (SMC) - Apple Support) does not help the issue, nor did resetting PRAM.
    - Removing mainboard battery did not fix it.
    - Resetting the battery using the onboard switch did not fix it.
    - Detaching components and reattaching them (RAM etc.) did not fix it.
    - Detaching device from Power for a prolongued period did not help.
    - Apple Hardware Test AHT (off the original installer disk shipped with the device) tells everything is healthy.
    - Having clean installed OS X (both:latest releas and also orignal version from original grey installer disks) did not help.
    Then: installed MacsFanControl which allows for checking each of the sensors and each of the fans. using them one by one as a control for the fanspeed, which always succeeds: every sensor delivers meaurements, every fan reacts to adjustments of rotational speed.
    BUT: As soon as you choose to let the SMC do the job of controlling the fans, fans switch back to full speed again.
    All this after having installed VMWare ESX 5.5 on the machine and then having reverted to OS X 10.10.1/2.
    Looks highly like SMC won't get properly reset or may some setting is written where SMC reset does not operate?
    Any hint would highly be appreciated since i'm not sure whether i should trust this machine which is meant to act as a server.
    Best
    osxhag

    Hello Community,
    the above phenomenon turned out to be rooted in s.th. completely different & unrelated.
    Obviously there is a system's preference for the 1st PCI-E slot for the RAID controller to be connected to.
    You actually may well plug the controller into slot 2 and 3 as well, and the system will then still boot, even after having moved the controller to a different PCI-E slot (after having installed the OS!), but always the SMC will react like described above. Still not sure what the aforementioned symptoms actually indicated (jsut "irritated" SMC or SMC flat out inoperable) - time's too scarce to investiate this any deeper, sorry...
    Best
    osxhag

  • Macbook 2.1 won't hold charge but battery indicator is full

    My wife's Macbook 2.1 is acting strangely. The Battery indicator led's are full (green) the charger led is also green and the software shows 100% battery is charged. After a couple of seconds after disconnecting the charger it switches off. I've tried resetting the SMC and this allowed a full nights use without the charger but on the next day it went back to only holding for a couple of seconds. I don't want to have to reset the SMC every day. It's running on 10.5.8 and is all up to date. Please help

    Also having a problem with Safari. When web browsing every so often you have to switch airport off then back on again to continue as you receive an error page. I've checked the log and it contains this
    05/06/2012 08:51:41 com.apple.launchd[1] (com.apple.webfilter[239]) Exited: Terminated
    05/06/2012 08:51:46 com.apple.launchd[1] (com.apple.webfilter[368]) Exited: Terminated
    05/06/2012 08:51:46 com.apple.familycontrols[159] **** abnormal termination of /sbin/kextunload (returned: 1)
    05/06/2012 08:51:46 com.apple.familycontrols[159] **** kextunload failed, could mean that:
    05/06/2012 08:51:46 com.apple.familycontrols[159]  - extension was not loaded
    05/06/2012 08:51:46 com.apple.familycontrols[159]  - the control socket is open (we are preventing a kernel panic)
    05/06/2012 08:51:46 com.apple.familycontrols[159]  - something else went wrong
    05/06/2012 08:51:49 com.apple.launchd[1] (com.apple.webfilter) Throttling respawn: Will start in 5 seconds
    05/06/2012 08:51:50 com.apple.familycontrols[159] *** CopyPageMetaEvaluation: FCEvaluatePageContent MIG error 268451843
    05/06/2012 08:51:54 com.apple.familycontrols[159] *** CopyPageMetaEvaluation: FCEvaluatePageContent MIG error 268451843
    05/06/2012 10:58:41 com.apple.launchctl.System[2] fsck_hfs: Volume is journaled.  No checking performed.
    05/06/2012 10:58:41 com.apple.launchctl.System[2] fsck_hfs: Use the -f option to force checking.
    05/06/2012 10:58:42 com.apple.launchctl.System[2] BootCacheControl: could not open /var/db/BootCache.playlist: No such file or directory
    05/06/2012 10:58:42 com.apple.launchctl.System[2] BootCacheControl: could not unlink playlist /var/db/BootCache.playlist: Unknown error: -1
    05/06/2012 10:58:43 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    05/06/2012 10:58:44 com.apple.launchd[1] (com.adobe.SwitchBoard) Unknown key: ServiceDescription
    05/06/2012 10:58:44 com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    05/06/2012 10:58:44 com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy) Unknown key for boolean: EnableTransactions
    05/06/2012 10:58:44 com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    05/06/2012 10:58:44 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    05/06/2012 10:58:44 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    05/06/2012 10:58:44 com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    05/06/2012 10:59:03 com.paceap.pacesupport[51] kextload: extension /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns/PACESupportL eopard.kext is already loaded
    05/06/2012 10:59:04 com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    05/06/2012 10:59:16 com.apple.SystemStarter[29] PACESupport - launchd already started us
    05/06/2012 10:59:16 com.apple.SystemStarter[29] /Library/StartupItems/Digidesign Mbox 2/Digidesign Mbox 2:start
    05/06/2012 10:59:16 com.apple.SystemStarter[29] Starting Digidesign Mbox 2 Configuration Service
    05/06/2012 10:59:17 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiIO.kext appears to be loadable
    05/06/2012 10:59:17 com.apple.SystemStarter[29] kextload: loading extension /System/Library/Extensions/DigiIO.kext
    05/06/2012 10:59:18 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiIO.kext is already loaded
    05/06/2012 10:59:18 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiDal.kext appears to be loadable
    05/06/2012 10:59:19 com.apple.SystemStarter[29] kextload: loading extension /System/Library/Extensions/DigiDal.kext
    05/06/2012 10:59:20 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiDal.kext is already loaded
    05/06/2012 10:59:34 com.parallels.desktop.launchdaemon[54] No suitable device found for PVS1.
    05/06/2012 10:59:36 com.bluecoat.k9filter[57] [2012-06-05 10:59:36] ERR: TDIIntercept: Driver not loaded - attempting to load.
    05/06/2012 10:59:37 com.apple.launchd[1] (com.parallels.vm.prl_naptd) Unknown key for boolean: SuccessfulExit
    05/06/2012 10:59:38 com.parallels.desktop.launchdaemon[54] Configuring en2...
    05/06/2012 10:59:38 com.parallels.desktop.launchdaemon[54] No System Preferences changes required.
    05/06/2012 10:59:38 com.parallels.desktop.launchdaemon[54] Configuring en3...
    05/06/2012 10:59:38 com.parallels.desktop.launchdaemon[54] No System Preferences changes required.
    05/06/2012 10:59:46 com.apple.audio.coreaudiod[181] Tue Jun  5 10:59:46 mes-macbook-4.local coreaudiod[181] <Warning>: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    05/06/2012 10:59:46 com.apple.audio.coreaudiod[181] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    05/06/2012 10:59:57 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[165]) Exited: Terminated
    05/06/2012 10:59:57 com.apple.launchctl.Aqua[198] launchctl: Please convert the following to launchd: /etc/mach_init_per_user.d/com.adobe.SwitchBoard.monitor.plist
    05/06/2012 10:59:57 com.apple.launchd[193] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    05/06/2012 10:59:57 com.apple.launchd[193] (org.x.startx) Unknown key for boolean: EnableTransactions
    05/06/2012 10:59:57 com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 8 seconds
    05/06/2012 11:00:00 com.apple.launchd[193] (com.apple.ReportPanic[212]) Exited with exit code: 1
    05/06/2012 11:00:08 com.apple.launchd[193] (0x100e50.switchboard.sh) Failed to check-in!
    05/06/2012 11:00:41 Finder[227] [QL ERROR] Generator database update takes too long... we will use what we currently have
    05/06/2012 11:00:45 SmileboxTray[250] 2012-06-05 11:00:45 Starting tray...
    05/06/2012 11:01:26 MacKeeper Helper[205] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    05/06/2012 11:01:26 MacKeeper Helper[205] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    05/06/2012 11:01:26 MacKeeper Helper[205] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    05/06/2012 11:02:14 SmileboxTray[250] 2012-06-05 11:02:14 Partner code in install data plist: google
    05/06/2012 11:02:14 SmileboxTray[250] NSScanner: nil string argument
    05/06/2012 11:02:14 SmileboxTray[250] NSScanner: nil string argument
    05/06/2012 11:39:03 com.apple.launchd[1] (com.apple.webfilter[275]) Exited: Terminated
    05/06/2012 11:39:16 com.apple.launchd[1] (com.apple.webfilter[429]) Exited: Terminated
    05/06/2012 11:39:16 com.apple.familycontrols[184] port 10011 is already being used. https proxy is probably already running
    05/06/2012 11:39:16 com.apple.launchd[1] (com.apple.webfilter) Throttling respawn: Will start in 6 seconds
    05/06/2012 11:39:17 com.apple.familycontrols[184] *** CopyPageMetaEvaluation: FCEvaluatePageContent MIG error 268451843
    05/06/2012 11:39:17 com.apple.familycontrols[184] *** CopyPageMetaEvaluation: FCEvaluatePageContent MIG error 268451843
    05/06/2012 11:39:17 com.apple.familycontrols[184] *** CopyPageMetaEvaluation: FCEvaluatePageContent MIG error 268451843
    05/06/2012 11:41:23 com.apple.launchd[1] (com.apple.webfilter[472]) Exited: Terminated
    05/06/2012 11:41:28 com.apple.familycontrols[184] **** abnormal termination of /sbin/kextunload (returned: 1)
    05/06/2012 11:41:28 com.apple.familycontrols[184] **** kextunload failed, could mean that:
    05/06/2012 11:41:28 com.apple.familycontrols[184]  - extension was not loaded
    05/06/2012 11:41:28 com.apple.familycontrols[184]  - the control socket is open (we are preventing a kernel panic)
    05/06/2012 11:41:28 com.apple.familycontrols[184]  - something else went wrong
    05/06/2012 11:55:01 com.apple.launchd[1] (com.apple.webfilter[572]) Exited: Terminated
    05/06/2012 11:55:06 com.apple.launchd[1] (com.apple.webfilter[949]) Exited: Terminated
    05/06/2012 12:26:48 com.apple.launchd[1] (com.apple.webfilter[999]) Exited: Terminated
    05/06/2012 12:57:32 com.apple.launchd[1] (com.apple.webfilter[1544]) Exited: Terminated
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1916. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1917. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1934. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1932. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1931. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1933. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1930. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1911. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1919. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1912. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1909. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1921. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1905. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1913. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1910. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1918. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1920. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1922. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1923. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1893. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1894. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1771. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1889. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1871. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1820. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1748. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1740. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1735. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1739. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1741. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1801. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1862. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1858. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1870. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1868. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1869. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1867. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1888. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1884. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1883. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1882. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1881. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1880. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1879. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1878. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1877. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1876. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1875. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1874. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1873. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1872. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1866. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1829. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1828. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1772. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1774. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1773. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1775. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1861. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1860. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1859. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1857. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1856. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1848. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1855. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1854. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1853. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1852. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1851. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1850. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1849. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1847. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1846. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1845. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1844. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1843. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1842. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1841. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1837. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1840. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1839. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1838. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1835. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1836. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1834. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1830. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1822. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1832. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1833. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1831. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1826. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1825. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1814. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1827. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1824. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1823. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1818. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1813. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1821. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1816. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1819. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1817. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1811. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1810. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1809. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1815. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1808. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1812. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1807. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1806. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1803. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1805. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1802. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1800. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1799. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1798. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1804. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1794. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1797. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1795. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1796. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1793. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1792. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1782. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1791. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1789. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1788. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1790. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1787. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1783. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1786. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1785. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1781. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1784. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1759. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1780. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1770. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1777. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1769. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1768. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1767. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1778. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1776. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1779. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1766. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1765. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1764. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1763. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1758. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1738. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1737. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1736. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1731. Err:3 No such process
    05/06/2012 18:18:35 com.apple.familycontrols[184] failed to send kill to 1696. Err:3 No such process
    05/06/2012 18:18:35 com.apple.launchd[1] (com.apple.webfilter[1699]) Exited: Terminated
    05/06/2012 18:18:45 [0x0-0x23023].SoftwareUpdateCheck[2021] SoftwareUpdateCheck: non-admin user
    05/06/2012 18:18:45 com.apple.launchd[193] ([0x0-0x23023].SoftwareUpdateCheck[2021]) Exited with exit code: 102
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2177. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2147. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2155. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2135. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2144. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2136. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2131. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2126. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2166. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2138. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2167. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2157. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2158. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2160. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2153. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2148. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2141. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2137. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2140. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2139. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2149. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2143. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2087. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2097. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2098. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2115. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2095. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2093. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2094. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2122. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2099. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2091. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2100. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2101. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2096. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2103. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2102. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2104. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2108. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2092. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2050. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2075. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2074. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2023. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2048. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2043. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2032. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2067. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2070. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2069. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2068. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2071. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2061. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2062. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2076. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2073. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2072. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2077. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2064. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2066. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2065. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2063. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2039. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2037. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2042. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2035. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2033. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2034. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2028. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2031. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2030. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2036. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2038. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2049. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2046. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2047. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2040. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2045. Err:3 No such process
    05/06/2012 20:36:48 com.apple.familycontrols[184] failed to send kill to 2041. Err:3 No such process
    05/06/2012 20:36:48 com.apple.launchd[1] (com.apple.webfilter[2022]) Exited: Terminated
    06/06/2012 08:14:55 com.apple.launchd[1] (com.apple.webfilter[2257]) Exited: Terminated
    06/06/2012 08:41:00 com.apple.launchd[1] (com.apple.webfilter[2820]) Exited: Terminated
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2908. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2972. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2973. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2971. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2946. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2885. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2929. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2930. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2928. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2927. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2926. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2882. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2925. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2822. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2902. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2904. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2878. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2903. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2907. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2915. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2899. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2900. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2901. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2898. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2905. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2867. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2873. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2872. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2874. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2889. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2871. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2891. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2890. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2887. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2876. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2875. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2877. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2888. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2886. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2884. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2880. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2883. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2832. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2821. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2860. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2859. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2831. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2856. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2857. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2858. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2855. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2852. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2842. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2840. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2836. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2829. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2827. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2828. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2826. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2830. Err:3 No such process
    06/06/2012 08:41:00 com.apple.familycontrols[184] failed to send kill to 2819. Err:3 No such process
    06/06/2012 10:03:15 com.apple.launchd[1] (com.apple.webfilter[3070]) Exited: Terminated
    06/06/2012 11:11:12 com.apple.launchd[1] (com.apple.webfilter[3279]) Exited: Terminated
    06/06/2012 11:38:08 com.apple.launchd[1] (com.apple.webfilter[3497]) Exited: Terminated
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3784. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3786. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3785. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3777. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3764. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3763. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3762. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3758. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3757. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3756. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3752. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3751. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3747. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3741. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3724. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3718. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3669. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3670. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3668. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3664. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3663. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3662. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3661. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3654. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3657. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3656. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3655. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3653. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3652. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3651. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3648. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3649. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3650. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3644. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3640. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3639. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3634. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3635. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3633. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3628. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3627. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3619. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3618. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3616. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3612. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3611. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3605. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3584. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3581. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3571. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3570. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3563. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3560. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3544. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3541. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3515. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3519. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3517. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3518. Err:3 No such process
    06/06/2012 11:38:08 com.apple.familycontrols[184] failed to send kill to 3514. Err:3 No such process
    06/06/2012 11:38:09 com.apple.familycontrols[184] **** abnormal termination of /sbin/kextunload (returned: 1)
    06/06/2012 11:38:09 com.apple.familycontrols[184] **** kextunload failed, could mean that:
    06/06/2012 11:38:09 com.apple.familycontrols[184]  - extension was not loaded
    06/06/2012 11:38:09 com.apple.familycontrols[184]  - the control socket is open (we are preventing a kernel panic)
    06/06/2012 11:38:09 com.apple.familycontrols[184]  - something else went wrong
    06/06/2012 11:46:31 [0x0-0xf00f].com.apple.finder[227] Wed Jun  6 11:46:31 mes-macbook-4.local Finder[227] <Error>: CGImageCreate: invalid image size: 0 x 0.
    06/06/2012 11:52:29 [0x0-0x2c02c].com.apple.Preview[3905] Wed Jun  6 11:52:29 mes-macbook-4.local Preview[3905] <Error>: Corrupt JPEG data: premature end of data segment
    06/06/2012 11:52:29 [0x0-0x2c02c].com.apple.Preview[3905]  
    06/06/2012 11:53:41 [0x0-0xf00f].com.apple.finder[227] Wed Jun  6 11:53:41 mes-macbook-4.local Finder[227] <Error>: CGImageCreate: invalid image size: 0 x 0.
    06/06/2012 11:58:55 com.apple.launchctl.System[2] fsck_hfs: Volume is journaled.  No checking performed.
    06/06/2012 11:58:55 com.apple.launchctl.System[2] fsck_hfs: Use the -f option to force checking.
    06/06/2012 11:59:01 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    06/06/2012 11:59:01 com.apple.launchd[1] (com.adobe.SwitchBoard) Unknown key: ServiceDescription
    06/06/2012 11:59:01 com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    06/06/2012 11:59:01 com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy) Unknown key for boolean: EnableTransactions
    06/06/2012 11:59:01 com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    06/06/2012 11:59:01 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    06/06/2012 11:59:01 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    06/06/2012 11:59:01 com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    06/06/2012 11:59:25 com.paceap.pacesupport[52] kextload: extension /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns/PACESupportL eopard.kext is already loaded
    06/06/2012 11:59:27 com.parallels.desktop.launchdaemon[55] No suitable device found for PVS0.
    06/06/2012 11:59:30 com.apple.launchd[1] (com.parallels.vm.prl_naptd) Unknown key for boolean: SuccessfulExit
    06/06/2012 11:59:31 com.parallels.desktop.launchdaemon[55] Configuring en2...
    06/06/2012 11:59:31 com.parallels.desktop.launchdaemon[55] No System Preferences changes required.
    06/06/2012 11:59:31 com.parallels.desktop.launchdaemon[55] Configuring en3...
    06/06/2012 11:59:31 com.parallels.desktop.launchdaemon[55] No System Preferences changes required.
    06/06/2012 11:59:32 com.apple.SystemStarter[30] /Library/StartupItems/Digidesign Mbox 2/Digidesign Mbox 2:start
    06/06/2012 11:59:32 com.apple.SystemStarter[30] Starting Digidesign Mbox 2 Configuration Service
    06/06/2012 11:59:32 com.apple.SystemStarter[30] PACESupport - launchd already started us
    06/06/2012 11:59:32 com.apple.SystemStarter[30] kextload: extension /System/Library/Extensions/DigiIO.kext appears to be loadable
    06/06/2012 11:59:32 com.apple.SystemStarter[30] kextload: loading extension /System/Library/Extensions/DigiIO.kext
    06/06/2012 11:59:32 com.apple.SystemStarter[30] kextload: extension /System/Library/Extensions/DigiIO.kext is already loaded
    06/06/2012 11:59:32 com.apple.SystemStarter[30] kextload: extension /System/Library/Extensions/DigiDal.kext appears to be loadable
    06/06/2012 11:59:32 com.apple.SystemStarter[30] kextload: loading extension /System/Library/Extensions/DigiDal.kext
    06/06/2012 11:59:32 com.apple.SystemStarter[30] kextload: extension /System/Library/Extensions/DigiDal.kext is already loaded
    06/06/2012 11:59:37 com.bluecoat.k9filter[58] [2012-06-06 11:59:37] ERR: TDIIntercept: Driver not loaded - attempting to load.
    06/06/2012 11:59:38 com.apple.audio.coreaudiod[157] Wed Jun  6 11:59:38 mes-macbook-4.local coreaudiod[157] <Warning>: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    06/06/2012 11:59:38 com.apple.audio.coreaudiod[157] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    06/06/2012 12:00:06 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[131]) Exited: Terminated
    06/06/2012 12:00:07 com.apple.launchctl.Aqua[195] launchctl: Please convert the following to launchd: /etc/mach_init_per_user.d/com.adobe.SwitchBoard.monitor.plist
    06/06/2012 12:00:07 com.apple.launchd[192] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    06/06/2012 12:00:07 com.apple.launchd[192] (org.x.startx) Unknown key for boolean: EnableTransactions
    06/06/2012 12:00:12 com.apple.launchd[192] (com.apple.ReportPanic[211]) Exited with exit code: 1
    06/06/2012 12:00:13 com.apple.launchd[192] (0x100e50.switchboard.sh) Failed to check-in!
    06/06/2012 12:00:23 Dock[223] _DESCRegisterDockExtraClient failed 268435459
    06/06/2012 12:00:47 Finder[228] [QL ERROR] Generator database update takes too long... we will use what we currently have
    06/06/2012 12:00:51 SmileboxTray[247] 2012-06-06 12:00:51 Starting tray...
    06/06/2012 12:01:40 MacKeeper Helper[204] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    06/06/2012 12:01:40 MacKeeper Helper[204] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    06/06/2012 12:01:40 MacKeeper Helper[204] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    06/06/2012 12:02:13 SmileboxTray[247] 2012-06-06 12:02:13 Partner code in install data plist: google
    06/06/2012 12:02:15 SmileboxTray[247] NSScanner: nil string argument
    06/06/2012 12:02:15 SmileboxTray[247] NSScanner: nil string argument
    06/06/2012 14:14:25 com.apple.launchd[1] (com.apple.webfilter[264]) Exited: Terminated
    06/06/2012 14:14:28 com.apple.familycontrols[189] **** abnormal termination of /sbin/kextunload (returned: 1)
    06/06/2012 14:14:28 com.apple.familycontrols[189] **** kextunload failed, could mean that:
    06/06/2012 14:14:28 com.apple.familycontrols[189]  - extension was not loaded
    06/06/2012 14:14:28 com.apple.familycontrols[189]  - the control socket is open (we are preventing a kernel panic)
    06/06/2012 14:14:28 com.apple.familycontrols[189]  - something else went wrong
    06/06/2012 14:17:31 com.apple.launchctl.System[2] fsck_hfs: Volume is journaled.  No checking performed.
    06/06/2012 14:17:31 com.apple.launchctl.System[2] fsck_hfs: Use the -f option to force checking.
    06/06/2012 14:17:38 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    06/06/2012 14:17:38 com.apple.launchd[1] (com.adobe.SwitchBoard) Unknown key: ServiceDescription
    06/06/2012 14:17:38 com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    06/06/2012 14:17:38 com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy) Unknown key for boolean: EnableTransactions
    06/06/2012 14:17:38 com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    06/06/2012 14:17:38 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    06/06/2012 14:17:38 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    06/06/2012 14:17:38 com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    06/06/2012 14:18:01 com.apple.SystemStarter[29] /Library/StartupItems/Digidesign Mbox 2/Digidesign Mbox 2:start
    06/06/2012 14:18:01 com.apple.SystemStarter[29] Starting Digidesign Mbox 2 Configuration Service
    06/06/2012 14:18:01 com.apple.SystemStarter[29] PACESupport - launchd already started us
    06/06/2012 14:18:01 com.paceap.pacesupport[51] kextload serialization lock busy; sleeping (89 retries left)
    06/06/2012 14:18:01 org.ntp.ntpd[26] Error : nodename nor servname provided, or not known
    06/06/2012 14:18:01 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiIO.kext appears to be loadable
    06/06/2012 14:18:02 com.apple.SystemStarter[29] kextload: loading extension /System/Library/Extensions/DigiIO.kext
    06/06/2012 14:18:02 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiIO.kext is already loaded
    06/06/2012 14:18:02 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiDal.kext appears to be loadable
    06/06/2012 14:18:02 com.apple.SystemStarter[29] kextload: loading extension /System/Library/Extensions/DigiDal.kext
    06/06/2012 14:18:02 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiDal.kext is already loaded
    06/06/2012 14:18:02 com.paceap.pacesupport[51] kextload: extension /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns/PACESupportL eopard.kext is already loaded
    06/06/2012 14:18:05 com.parallels.desktop.launchdaemon[54] No suitable device found for PVS0.
    06/06/2012 14:18:07 com.apple.launchd[1] (com.parallels.vm.prl_naptd) Unknown key for boolean: SuccessfulExit
    06/06/2012 14:18:08 com.parallels.desktop.launchdaemon[54] Configuring en2...
    06/06/2012 14:18:08 com.parallels.desktop.launchdaemon[54] No System Preferences changes required.
    06/06/2012 14:18:08 com.parallels.desktop.launchdaemon[54] Configuring en3...
    06/06/2012 14:18:08 com.parallels.desktop.launchdaemon[54] No System Preferences changes required.
    06/06/2012 14:18:10 com.apple.audio.coreaudiod[161] Wed Jun  6 14:18:10 mes-macbook-4.local coreaudiod[161] <Warning>: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    06/06/2012 14:18:10 com.apple.audio.coreaudiod[161] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    06/06/2012 14:18:12 com.bluecoat.k9filter[57] [2012-06-06 14:18:12] ERR: TDIIntercept: Driver not loaded - attempting to load.
    06/06/2012 14:18:31 com.apple.launchctl.System[2] BootCacheControl: could not fetch 407440 bytes of history: Invalid argument
    06/06/2012 14:26:13 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[134]) Exited: Terminated
    06/06/2012 14:26:13 com.apple.launchctl.Aqua[299] launchctl: Please convert the following to launchd: /etc/mach_init_per_user.d/com.adobe.SwitchBoard.monitor.plist
    06/06/2012 14:26:13 com.apple.launchd[295] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    06/06/2012 14:26:13 com.apple.launchd[295] (org.x.startx) Unknown key for boolean: EnableTransactions
    06/06/2012 14:26:19 com.apple.launchd[295] (com.apple.ReportPanic[310]) Exited with exit code: 1
    06/06/2012 14:26:20 com.apple.launchd[295] (0x101130.switchboard.sh) Failed to check-in!
    06/06/2012 14:26:58 SmileboxTray[350] 2012-06-06 14:26:58 Starting tray...
    06/06/2012 14:27:36 MacKeeper Helper[303] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    06/06/2012 14:27:36 MacKeeper Helper[303] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    06/06/2012 14:27:36 MacKeeper Helper[303] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    06/06/2012 14:28:34 SmileboxTray[350] 2012-06-06 14:28:34 Partner code in install data plist: google
    06/06/2012 14:28:34 SmileboxTray[350] NSScanner: nil string argument
    06/06/2012 14:28:34 SmileboxTray[350] NSScanner: nil string argument
    06/06/2012 15:40:54 com.apple.launchd[1] (com.apple.webfilter[375]) Exited: Terminated
    06/06/2012 18:59:59 com.apple.launchctl.System[2] fsck_hfs: Volume is journaled.  No checking performed.
    06/06/2012 18:59:59 com.apple.launchctl.System[2] fsck_hfs: Use the -f option to force checking.
    06/06/2012 19:00:00 com.apple.launchctl.System[2] BootCacheControl: could not open /var/db/BootCache.playlist: No such file or directory
    06/06/2012 19:00:00 com.apple.launchctl.System[2] BootCacheControl: could not unlink playlist /var/db/BootCache.playlist: Unknown error: -1
    06/06/2012 19:00:01 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    06/06/2012 19:00:02 com.apple.launchd[1] (com.adobe.SwitchBoard) Unknown key: ServiceDescription
    06/06/2012 19:00:02 com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    06/06/2012 19:00:02 com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy) Unknown key for boolean: EnableTransactions
    06/06/2012 19:00:02 com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    06/06/2012 19:00:02 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    06/06/2012 19:00:02 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    06/06/2012 19:00:02 com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    06/06/2012 19:00:24 com.paceap.pacesupport[51] kextload: extension /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns/PACESupportL eopard.kext is already loaded
    06/06/2012 19:00:34 com.apple.SystemStarter[29] PACESupport - launchd already started us
    06/06/2012 19:00:34 com.apple.SystemStarter[29] /Library/StartupItems/Digidesign Mbox 2/Digidesign Mbox 2:start
    06/06/2012 19:00:34 com.apple.SystemStarter[29] Starting Digidesign Mbox 2 Configuration Service
    06/06/2012 19:00:34 com.apple.SystemStarter[29] kextload serialization lock busy; sleeping (89 retries left)
    06/06/2012 19:00:35 com.apple.SystemStarter[29] kextload serialization lock busy; sleeping (88 retries left)
    06/06/2012 19:00:36 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiIO.kext appears to be loadable
    06/06/2012 19:00:38 com.apple.SystemStarter[29] kextload: loading extension /System/Library/Extensions/DigiIO.kext
    06/06/2012 19:00:38 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiIO.kext is already loaded
    06/06/2012 19:00:38 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiDal.kext appears to be loadable
    06/06/2012 19:00:39 com.apple.SystemStarter[29] kextload: loading extension /System/Library/Extensions/DigiDal.kext
    06/06/2012 19:00:39 com.apple.SystemStarter[29] kextload: extension /System/Library/Extensions/DigiDal.kext is already loaded
    06/06/2012 19:00:57 com.bluecoat.k9filter[57] [2012-06-06 19:00:57] ERR: TDIIntercept: Driver not loaded - attempting to load.
    06/06/2012 19:00:57 com.parallels.desktop.launchdaemon[54] No suitable device found for PVS1.
    06/06/2012 19:01:00 com.apple.launchd[1] (com.parallels.vm.prl_naptd) Unknown key for boolean: SuccessfulExit
    06/06/2012 19:01:01 com.parallels.desktop.launchdaemon[54] Configuring en2...
    06/06/2012 19:01:01 com.parallels.desktop.launchdaemon[54] No System Preferences changes required.
    06/06/2012 19:01:01 com.parallels.desktop.launchdaemon[54] Configuring en3...
    06/06/2012 19:01:01 com.parallels.desktop.launchdaemon[54] No System Preferences changes required.
    06/06/2012 19:01:11 com.apple.audio.coreaudiod[175] Wed Jun  6 19:01:11 mes-macbook-4.local coreaudiod[175] <Warning>: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    06/06/2012 19:01:11 com.apple.audio.coreaudiod[175] _RegisterApplication(), FAILED

  • Delivery Completed Indicator  - Open PO Quantity Issue

    Hi All,
    I have an issue relating to our Open Purchase Order Report.  I have some POs which are appearing on the report eventhough they are marked, 'Delivery Complete' ie NOT open. The example of a PO is where the PO Quantity is 100 and the Goods Receipt is 99.  The user knows that there will be no further deliveries and therefore marks the PO 'Delivery Complete'
    In the Extractor to BI we have extracted this field ELIKZ 'Delivery Completed Indicator'.  The structure of our datamodel is
    PSA -> DSO (Write Optimised DSO) -> Cube
    We calculate the Open PO Qty by taking 'PO Qty' minus 'Goods Receipt Quantity' I have checked the example PO in the cube & DSO.  I can see that for the infoobject 'Delivery Complete Indicator' that it has been marked 'X' but only on the records relating to the Goods Receipt for this PO.  The original PO record is added to the cube eg on 1st Jan and then the Goods Receipt record, including the delivery complete indicator is added to the cube on 31st Jan, but the original record is not updated by this indicator.  Therefore at the moment I cannot use this to filter out records in my query.  See below how it looks in the Cube;
    Created Date - PO No - PO Line - Del Complete Indicator - PO QTy - Goods Receipt Qty
    01.01.2011       123      10             (Blank)                             100
    31.01.2011       123      10                 X                                                         99
    What should I do?  How have you created this report?
    Just to let you know I have already read the post Delivery Completed Indicator(ELIKZ:0COMPL_DEL) in 2LIS_02_SCL
    Many thanks for your help,
    Michelle

    Hi Kalyan,
    Thanks very much for your message,
    In my case if the Order Qty is not equal to receipted this does not always mean that it is open.  Sometimes the receipted quantity can be over or under (not equal) and the PO can be closed.  What do you mean by confirmed quanity?  Also, this is a Purchase Order report not a Sales report.
    You have said...
    "Then I would suggest to still keep the condition on the Net ord qty and Net confirmed qty and exclude the del compl indicator as X and also the status as open "
    I don't understand how this will work.  My issue is that the indicator is not on all the records of a PO only the receipted records.
    Can you help again please?
    Many thanks
    Michelle

  • In list view in ibooks i have an indicator that looks like a media stop eg || in a circle on many lines. What is it

    All of a sudden using Ibooks on my Ipad - many lines in list view have this indicator || inside a circle appearing on the far right and the books no longer open.  I can find nothing about this in help. What is it and what does it mean
    Peter Rowan

    Hi John, I'm guessing that icon is created and updated by an extension. I'm not sure which one, though. Maybe something that is tracking the trackers, like Lightbeam? Have you tried hovering your mouse over the icon to see whether a tooltip appears, or clicking it?

  • Deactivate Goods receipt indicator on PO Delivery Tab

    Dear Experts
    My client would like that system would not require goods receipt (non-GR based PO) for PO line items of respective material group (services) - goods receipts should even not be possible so GR indicator on the delivery tab should be ticked-off.
    Since the client is using one-client system with multiple company codes on same client this requirement should be valid not on a client- but on a company code- or plant-level.
    Please advise how to approach to this challenge. Is it possible to set it up via customizing or some programming is required.
    Thank you in advance for any hint.
    Best regards
    Miha Egart

    Hi Jürgen,
    I have checked the Network, it is not stock managed.
    But there is another PO in which the network is not stock managed but The GR indicator is set for the PO.
    I am doing PR conversion through ME59 just against info record not against contract.
    Instead of automatically converting PR through ME59/ME59N, if I am trying to do it directly through ME21N, the GR tick is set. But the client will not do this, they will do automatic conversion of PR's only.
    Can you please suggest some other possibilities.
    Regards,
    Krishna Bharadwaj.

  • Config of Goods Receipt indicator specific to individual PO line price

    Hello all
    Is there a way to define Goods Receipt indicator (field WEPOS in EKPO table) to default to either checked or unchecked, for individual PO Lines, based on the price of the material at each PO line ? (ex price beyond a threshold value should require a Goods Receipt)
    Goods Receipt requirement would therefore not be vendor specific (ie configured at Vendor level XK01) or Account Assignment Category specific (ie configured at OME9), but specific to individual PO lines value/price. Where can this threshold value of price be specified ?
    Thanks a lot

    This can be configured on the basis of USER ID
    Inforecord.
    I dont think on the basis of PO valu.
    IN inforecord u can check this.

  • Win 8.1 OneDrive upload stalls, no indicator, no error

    Now that OneDrive offers 1TB of storage, I am attempting to upload all of my music, videos, and pictures - about 225GB of data. This is not working. OneDrive mysteriously stalls the upload. There are no indications of the upload stalling/stopping/pausing.
    I know it is stalled ONLY because I'm looking at network traffic and it is ZERO!
    If I check the Win 8 OneDrive app, the app indicates there "2 actions in progress..." Bringing the OneDrive app into context by clicking it, CPU utilization rises dramatically.  Sometimes to 80-90% range. Bring anything else back into
    the foreground, CPU util drops to a couple of %.  There is no impact by having/not having and upload in progress.  CPU util is a bug in the OneDrive app.  Intermittent, btw, for anybody that wants to file a bug on it.
    If I check the systray icon in Desktop by floating my mouse over it, the tooltip says, "Uploading 87.2 GB of 149.3 GB (58%)" (btw, due to restarts, it adusted the 225GB down to 150GB).  However that's wrong.  Nothing is actually uploading.
    If I click the systray icon a small console pops up with the syncing icon appearing and the following text displayed:
    "Uploading - 58% complete
    4904 items remaining
    Sync
    Pause syncing
    Open OneDrive in File Explorer"
    Again, this is wrong as there is ZERO network traffic.
    If I click the "Pause syncing" link, OneDrive is confused and thinks an error occurred.  It displays the exclamation mark inside a yellow triangle and states:
    "File syncing is paused
    4904 items couldn't be uploaded
    View sync problems
    Resume syncing
    Open OneDrive in File Explorer"
    Obviously this is wrong, there was no error.  Why it now displays the status as "paused", when clearly based on network traffic it was already paused, I don't know.  It's been paused all along.  If I click the "Resume syncing"
    link, the sync will indeed resume to the maximum rate of my outbound internet connection (about 6.5Mbps).  However, when I come back to my PC after an hour or so, I find the same state:  No network traffic, but OneDrive is indicating a sync is in
    progress.
    I have gone through all the power options to disable sleep, disable hibernation, disable drive shutdown, disable monitor shutoff, etc.  I went through network adapter advanced config and disabled power off (which is for power savings).
    First off, while a sync is in progress, Windows should be smart enough to know NOT to shut down or enter low power modes, but due to bugs, that is not the case.  Second, even after modifying the power profile and keeping my PC and all ancillary hardware
    alive, OneDrive still pauses and does so without any indicators anywhere.  OneDrive appears to think the transfer is still going. 
    I have verified all updates are installed.  I have rebooted my PC.  I've sat here and watched over it hoping to catch the problem, but have never seen it occur while I'm active on my PC.  I've verified this same problem occurs on other PCs. 
    I'm out of ideas.
    What is the point of having 1TB of storage if I can't upload anything to it?  Uploading this much data at 6.5Mbps will take days.  I cannot sit here and babysit my PC for days on end to find a workaround for Windows/OneDrive bugs.
    Please help.
    Regards,
    Michael

    Michael
    One drive questions need to be asked here.  On a different note I would make sure Onedrive is completely backed
    up AFAIK it is not.
    Wanikiya and Dyami--Team Zigzag

  • In the new Pages 5.0, what is the page break shortcut key. I cannot find the key as indicated on the drop down menu.

    in the new Pages 5.0, what is the page break shortcut key (it used to be the Fn + enter). I cannot find the (new) key as indicated on the drop down menu. Please help.

    Hi Bruce and fruhulda,
    ok, I found the keyboard viewer, it only shows the traditional symbol 'return'.  something like a sideway u-turn continued with the arrow under.  This is the Canadian or US keyboard. 
    btw thanks for your suggestion.

  • To Set Goods Receipt Indicator For Particular Line Items In SRM

    Hi All,
      i am working on BBP_DOC_CHANGE_BADI in SRM. i am trying to set the goods receipt indicator for particular line items based upon certain conditions. The values are being set in the badi. But when the Purchase Order is created in the backend R/3 i coudn't able to find the goods receipt indiactor being set..
    i used this field to set the GR indicator
      GR_IND = 'X'.  " Goods Receipt Indicator
    Can anyone help me in this?
    helpfull answers will be rewarded....
    Thanks,
    Murali

    To Murali and Christophe,
    I have set the GR and GR non val indicator in CREATE_PO BADI but I face the following situation :
    problem -
    In case of multiple account assignment in the shopping cart, the R/3 transaction ME21N sets these flags. 
    The flag status determined as per EBP conditions is lost.
    I need to retain the flag status as per EBP conditions even in this multiple account assignment scenario.
    proposed solution -
    - CREATE PO badi is already implemented in EBP and customised logic for GR and GR non valflag is in place.
    - I create user exit in R/3 backend system in ME21N transaction 
    - I make RFC call in this user exit to EBP and check the table BBP_PDPSET for the shopping cart.
    This is how I get the flag status as per EBP conditions and copy the same to R/3 thereby overriding the multiple account assignment check of the R/3 system.
    issue - 
    When I tried to verify that I can check the BBP_PDPSET table from R/3, I found that this table is not having entries for all the records in  CRMD_ORDERADM_I table.
    For which shopping carts will the BBP_PDPSET table not  be populated ?
    thank you in advance,
    Bhakti.

  • Updated CC today .. now the app manager is indicating only ten apps are now installed.

    I updated all apps today as per normal via the CC App Manager. All apps successfully updated, until Photoshop, which failed to update. I tried more than several times to update but it kept failing.
    I then decided to close the CC Manager and restart. When I accessed the Manager again and went to View Updates & Requests, the list indicated only ten apps were installed, and the rest had to be installed (AGAIN).  I  checked my Applications Folder and all the CC apps were still installed and working.
    I haven't received any error messages. However when I returned to the website the apps were indicating for me to download trial versions. My CC account is current and paid up til March 2016. Now I have just  accessed my Adobe ID account and checked under Plans & Products section, but it is indicating I have no No Registered Products.
    So currently my Adobe Creative Cloud Manager is indicating I have ten apps up to date (Lightroom 5, Acrobat XI Pro, Edge Animate CC, Edge Code CC, Edge Inspect CC, Edge Reflow CC, Extendscript Toolkit CC, Flash Builder Premium, Gaming SDK 1.4, Scout CC) but all other key applications have the install icon by their side (Photoshop CC, Illustrator CC, InDesign CC ...etc).
    I started on Photoshop 4 many years ago and have never had any issue with any of the Creative Suite's. I also had issue with my Adobe ID not being accepted, even when copy/pasting from my Keychain Access. I had to reset my password (used the same password anyway).
    My confidence in Creative Cloud is now somewhat diminished and I am considering canceling my CC subscription and returning to CS5 - because it works!
    EDIT: Since starting to write this the Adobe ID/ Community site has logged my account out unexpectedly. Not good.
    Adobe Creative Cloud v 1.9.1.474
    Yosemite 10.10
    MacBook Pro (Retina, 15-inch, Mid-2014)
    2.2 GHz Intel Core i7
    16 GB 1600 MHz DDR3
    APPLE SSD SM0256F: 256GB
    Intel Iris Pro 1536MB
    Adobe ID: Craig Mathews
    [email protected]

    I decided to uninstall Adobe Desktop Manager and reinstall, and seems to have remedied all of the CC apps issue...
    However still getting randomly logged out of my account and my password is not being accepted...
    Only way I got access again was to open three instances of the log in page and try again - third window opened, other two declared my password was wrong >_<
    This new online / cloud system is terrible. Might just reinstall CS5 anyway and be done with this crap. Meh!

  • How can I reset the value of an indicator in a while loop, from another synchronous while loop?

    I am running 2 synchronous while loops, one which is keep track of time, and the other is measuring periods. In the while loop that is measuring periods, I have a boolean indicator displaying whether the signal is on or off. My problem is that when the signal is off, the VI I use to measure the periods is waiting for the next signal, and displays the boolean value from the previous period measurement. While this VI is waiting, I want the indicator to display false and not the value from the last iteration of the loop.
    I am using LV 5.1 for MAC.

    Two things you can try:
    In preface to the first, the most common (perhaps ONLY) use of local variables should be in transferring data between parallel loops. This is a matter of discipline, and creates programs that are easier to understand, take less time and memory, and are just plain cleaner. Having said that, to transfer data between loops, use a local variable.
    Second solution: Instead of setting the value to false, just hide the indicator in question by using control references (property nodes for prev. version of LabVIEW). Control references are a great way to control items on a dialog or HMI screen.

  • Secondary Index vs Secondary Indices

    Hi All,
    In the earlier version already  we have the primary index,secondary indexes,But now iam going through the enhancements in NW 7.0 In this they mentioned Secondary indices as the new enhancement with NW 7.0,I know how to create the Secondary indices ,But i am getting the conffusion between secondary indexes (already we have) and the new Secondary Indices,So please could any one elobarate this or atleast URL'S which are relavant to this topic,It would be very help full to me.
    Thank you..
    Srihasa

    new index are just different at workbench level, but are the same at database level. You may assign them to a Y or Z package (instead of the sap package, it was seen as a modification of the standard). They also have a dedicated object directory entry (R3TR XINX). http://help.sap.com/saphelp_erp2005vp/helpdata/EN/85/685a41cdbf8047e10000000a1550b0/frameset.htm
    [Note 1257033 - Cookbook: Modification/enhancement for standard SAP system|http://service.sap.com/sap/support/notes/1257033]

Maybe you are looking for

  • How to use a transfer library in FCPX

    Here's what I want to do: I have an FCP X project going on my main Mac Pro, but I want to so some work on my laptop. The main thing I want to do is mark parts of the various clips with keywords so I can use those keyword collections back on the Mac P

  • How do I remove an old calendar group from my iphone.

    This old group seems to be the default for entering events on the iphone. I have a .me account and an old .mac account. My mobile me (.me) is the calendar I use on my computer. I can see that on my iphone, but for some reason, when I create new event

  • Message: "Adobe Reader blocked for this website"

    When I try to open a pdf file a message appears "Adobe Reader blocked for this website". i then click the little arrow and another window pops up and it reads: "Do you want to trus the website www.........com to use the Adobe Reader plug in? And when

  • How to run JMF Applet on a machine without JMF installed

    Hi I have found many question about that but I don't undertand reply. I want display a JMF Applet on a machine without JMF installed. This PCs browser is the Netscape navigator 4.78 I have restrictions, I can't install anything on a client machine. W

  • No Finder image preview for Canon EOS-1D X .CR2 files

    I am working on a catalog and have been provided nearly 2000 images from which to choose. I have had no preview issues up until the photographer started using a Canon EOS-1D X. Before, he was using a Canon EOS 5D Mark II and I could preview the image