From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932327Ab3JNXCc (ORCPT ); Mon, 14 Oct 2013 19:02:32 -0400 Received: from mga14.intel.com ([143.182.124.37]:52064 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932083Ab3JNXCb (ORCPT ); Mon, 14 Oct 2013 19:02:31 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.93,494,1378882800"; d="scan'208";a="374702512" From: Jacob Pan To: Zhang Rui , Linux PM , Eduardo Valentin , LKML , acme@redhat.com, dhowells@redhat.com, bp@suse.de, gthelen@google.com Cc: Rafael Wysocki , Jacob Pan Subject: [PATCH v1] TMON thermal monitoring/tuning tool Date: Mon, 14 Oct 2013 16:02:26 -0700 Message-Id: <1381791747-7458-1-git-send-email-jacob.jun.pan@linux.intel.com> X-Mailer: git-send-email 1.7.9.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Changes since v0 - fix seg fault on arm mvprintw() call - give out warning to console instead of syslog when no thermal zones are detected - draw sub window title on top of border line - add entry to tools/Makefile - change linking order to put libpanel before ncurses Jacob Pan (1): tools/thermal: Introduce tmon, a tool for thermal subsystem tools/Makefile | 15 +- tools/thermal/tmon/Makefile | 47 ++++ tools/thermal/tmon/README | 50 ++++ tools/thermal/tmon/pid.c | 131 +++++++++ tools/thermal/tmon/sysfs.c | 596 ++++++++++++++++++++++++++++++++++++++++ tools/thermal/tmon/tmon.8 | 142 ++++++++++ tools/thermal/tmon/tmon.c | 352 ++++++++++++++++++++++++ tools/thermal/tmon/tmon.h | 204 ++++++++++++++ tools/thermal/tmon/tui.c | 638 +++++++++++++++++++++++++++++++++++++++++++ 9 files changed, 2173 insertions(+), 2 deletions(-) create mode 100644 tools/thermal/tmon/Makefile create mode 100644 tools/thermal/tmon/README create mode 100644 tools/thermal/tmon/pid.c create mode 100644 tools/thermal/tmon/sysfs.c create mode 100644 tools/thermal/tmon/tmon.8 create mode 100644 tools/thermal/tmon/tmon.c create mode 100644 tools/thermal/tmon/tmon.h create mode 100644 tools/thermal/tmon/tui.c -- 1.7.9.5