From: Eduardo Valentin <edubezval@gmail.com>
To: Aishwarya Pant <aishpant@gmail.com>
Cc: Viresh Kumar <viresh.kumar@linaro.org>,
Zhang Rui <rui.zhang@intel.com>,
Vincent Guittot <vincent.guittot@linaro.org>,
linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH V3] thermal: Add cooling device's statistics in sysfs
Date: Fri, 12 Jan 2018 09:25:45 -0800 [thread overview]
Message-ID: <20180112172544.GB10243@localhost.localdomain> (raw)
In-Reply-To: <20180112110943.GA4020@mordor.localdomain>
On Fri, Jan 12, 2018 at 04:39:43PM +0530, Aishwarya Pant wrote:
> On Thu, Jan 11, 2018 at 03:06:09PM +0530, Viresh Kumar wrote:
> > This extends the sysfs interface for thermal cooling devices and exposes
> > some pretty useful statistics. These statistics have proven to be quite
> > useful specially while doing benchmarks related to the task scheduler,
> > where we want to make sure that nothing has disrupted the test,
> > specially the cooling device which may have put constraints on the CPUs.
> > The information exposed here tells us to what extent the CPUs were
> > constrained by the thermal framework.
> >
> > The read-only "total_trans" file shows the total number of cooling state
> > transitions the device has gone through since the time the cooling
> > device is registered or the time when statistics were reset last.
> >
> > The read-only "time_in_state_ms" file shows the time spent by the device
> > in the respective cooling states.
> >
> > The write-only "reset" file is used to reset the statistics.
> >
> > This is how the directory structure looks like for a single cooling
> > device:
> >
> > $ ls -R /sys/class/thermal/cooling_device0/
> > /sys/class/thermal/cooling_device0/:
> > cur_state max_state power stats subsystem type uevent
> >
> > /sys/class/thermal/cooling_device0/power:
> > autosuspend_delay_ms runtime_active_time runtime_suspended_time
> > control runtime_status
> >
> > /sys/class/thermal/cooling_device0/stats:
> > reset time_in_state_ms total_trans
> >
> > This is tested on ARM 32-bit Hisilicon hikey620 board running Ubuntu and
> > ARM 64-bit Hisilicon hikey960 board running Android.
> >
> > Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
> > ---
> > V2->V3:
> > - Total number of states is max_level + 1. The earlier version didn't
> > take that into account and so the stats for the highest state were
> > missing.
> >
> > V1->V2:
> > - Move to sysfs from debugfs
> >
> > drivers/thermal/thermal_core.c | 3 +-
> > drivers/thermal/thermal_core.h | 3 +
> > drivers/thermal/thermal_helpers.c | 5 +-
> > drivers/thermal/thermal_sysfs.c | 146 ++++++++++++++++++++++++++++++++++++++
> > include/linux/thermal.h | 1 +
> > 5 files changed, 156 insertions(+), 2 deletions(-)
>
> <snip>
>
> > index 27e3b1df7360..f6eb01e99816 100644
> > --- a/drivers/thermal/thermal_core.h
> > +++ b/drivers/thermal/thermal_core.h
> +
> > +static DEVICE_ATTR(total_trans, 0444, thermal_cooling_device_total_trans_show,
> > + NULL);
> > +static DEVICE_ATTR(time_in_state_ms, 0444,
> > + thermal_cooling_device_time_in_state_show, NULL);
> > +static DEVICE_ATTR(reset, 0200, NULL, thermal_cooling_device_reset_store);
> > +
>
> Hi
>
> I can see that you have added some files to the sysfs ABI. It would be good to
> have these new interfaces documented in Documentation/ABI.
all thermal sysfs entries are documented here:
Documentation/thermal/sysfs-api.txt
Please update.
>
> Aishwarya
>
> <snip>
next prev parent reply other threads:[~2018-01-12 17:25 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-11 9:36 [PATCH V3] thermal: Add cooling device's statistics in sysfs Viresh Kumar
2018-01-12 11:09 ` Aishwarya Pant
2018-01-12 17:25 ` Eduardo Valentin [this message]
2018-01-12 17:46 ` Eduardo Valentin
2018-01-15 4:46 ` Viresh Kumar
2018-01-15 16:32 ` Eduardo Valentin
2018-01-16 8:44 ` Viresh Kumar
2018-01-16 10:00 ` Viresh Kumar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180112172544.GB10243@localhost.localdomain \
--to=edubezval@gmail.com \
--cc=aishpant@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rui.zhang@intel.com \
--cc=vincent.guittot@linaro.org \
--cc=viresh.kumar@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.