Re: [PATCH v6 1/2] PM-runtime: update accounting_timestamp only when enable

From: Ulf Hansson
Date: Wed Jan 23 2019 - 04:35:47 EST


On Wed, 23 Jan 2019 at 09:50, Vincent Guittot
<vincent.guittot@xxxxxxxxxx> wrote:
>
> On Wed, 23 Jan 2019 at 09:14, Ulf Hansson <ulf.hansson@xxxxxxxxxx> wrote:
> >
> > On Tue, 22 Jan 2019 at 15:24, Vincent Guittot
> > <vincent.guittot@xxxxxxxxxx> wrote:
> > >
> > > Initializing accounting_timestamp to something different from 0 during
> > > pm_runtime_init() doesn't make sense and put useless ordering constraint between
> > > timekeeping_init() and pm_runtime_init().
> > > PM runtime should start accounting time only when it is enable and discard
> > > the period when disabled.
> > > Set accounting_timestamp to now when enabling PM runtime.
> >
> > Hmm, my first impression is that this sounds like a reasonable thing
> > to do. However, there are couple of more things to consider.
> >
> > 1) update_pm_runtime_accounting() is setting a new value of
> > dev->power.accounting_timestamp, no matter of whether runtime PM has
> > been enabled. That's seems wrong to me, at least from the perspective
> > of what we are trying to change here. So you probably needs to fix
> > that too.
>
> note that whatever is done before enabling pm runtime, this will be
> overwritten during the enablement.

Right. After this patch, but the original code seems wrong, doesn't it?

> I can add a clean up patch but this behavior is already there with jiffies.

That would be great, to get this sorted out.

>
> Or do you think that update_pm_runtime_accounting can be called before
> timekeeping_init() ?

No.

>
> >
> > 2) I don't think you explicitly need to set
> > dev->power.accounting_timestamp to zero at pm_runtime_init(). Just
> > leave it uninitialized, as we are anyways going to initialize it
> > before we make use of it.
>
> yes probably
>
> >
> > 3) How will this change affect accounting while being system
> > suspended? As you know, the PM core disables and re-enables runtime PM
>
> So the time in system suspended will not be accounted

Right. But, I am not sure the accounting is correctly done.

>
> > during a system suspend/resume sequence. It looks to me, that you
> > actually need to call update_pm_runtime_accounting() from
> > pm_runtime_enable|disable(), or something along those lines, as to get
> > the accounting correct, no?
>
> I thought that everything was already done for jiffies too. As soon as
> pm runtime is disable, we can't really account this time to
> suspended_time or active_time because we don't have control anymore

Correct.

However, my point is that during system suspend, sooner or later we
end up disabling runtime PM. Up until that point, we should account
for, but it seems like we don't do that correctly. As instead, we just
keep the old accounting timestamp during system suspend (until someone
changes the runtime PM status, but there is now guarantee that
happens).

>
> I think that we don't need any additional changes for
> pm_runtime_enable because we just init the accounting_timestamp and
> there is no active or suspend runtime to account yet

Right, after a second thought, this makes sense.

> For pm_runtime_disable(), I thought that everything was already there
> otherwise it means that we already didn't account the time correctly.
> I will have a deeper look at that

Great!

I think the accounting is simply based upon that the "time" is stopped
during system suspend and thus also the accounting.

Although, as the header of $subject patch indicates, we want to move
to a well defined situation. Therefore it sounds to me that we need to
care about accounting while disabling runtime PM.

Anyway, let's see what you find out from your deeper look. :-)

[...]

Kind regards
Uffe