From: "Naveen N. Rao" <naveen.n.rao@linux.vnet.ibm.com> To: ego@linux.vnet.ibm.com Cc: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>, linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, Michael Ellerman <mpe@ellerman.id.au>, Nathan Lynch <nathanl@linux.ibm.com>, Vaidyanathan Srinivasan <svaidy@linux.vnet.ibm.com>, Tyrel Datwyler <tyreld@linux.ibm.com> Subject: Re: [PATCH v4 2/6] powerpc/idle: Add accessor function to always read latest idle PURR Date: Fri, 03 Apr 2020 16:04:56 +0530 [thread overview] Message-ID: <1585909343.fw0f8jg7ug.naveen@linux.ibm.com> (raw) In-Reply-To: <20200403061536.GA9066@in.ibm.com> Gautham R Shenoy wrote: > On Wed, Apr 01, 2020 at 03:12:53PM +0530, Naveen N. Rao wrote: >> Hi Gautham, >> >> Gautham R. Shenoy wrote: >> >From: "Gautham R. Shenoy" <ego@linux.vnet.ibm.com> >> > >> >+ >> >+static inline u64 read_this_idle_purr(void) >> >+{ >> >+ /* >> >+ * If we are reading from an idle context, update the >> >+ * idle-purr cycles corresponding to the last idle period. >> >+ * Since the idle context is not yet over, take a fresh >> >+ * snapshot of the idle-purr. >> >+ */ >> >+ if (unlikely(get_lppaca()->idle == 1)) { >> >+ update_idle_purr_accounting(); >> >+ snapshot_purr_idle_entry(); >> >+ } >> >+ >> >+ return be64_to_cpu(get_lppaca()->wait_state_cycles); >> >+} >> >+ >> >> I think this and read_this_idle_spurr() from the next patch should be moved >> to Patch 4/6, where they are actually used. > > The reason I included this function in this patch was to justify why > we were introducing snapshotting the purr values in a global per-cpu > variable instead of on a stack variable. The reason being that someone > might want to read the PURR value from an interrupt context which had > woken up the CPU from idle. At this point, since epilog() function > wasn't called, the idle PURR count corresponding to this latest idle > period would have been accumulated in lppaca->wait_cycles. Thus, this > helper function safely reads the value by > 1) First updating the lppaca->wait_cycles with the latest idle_purr > count. > 2) Take a fresh snapshot, since the time from now to the epilog() > call is also counted under idle CPU. So the PURR cycle increment > during this short period should also be accumulated in lppaca->wait_cycles. > > > prolog() > | snapshot PURR > | > | > | > Idle > | > | <----- Interrupt . Read idle PURR ---- update idle PURR; > | snapshot PURR; > | Read idle PURR. > | > epilog() > update idle PURR > Yes, I understand. It makes sense. > > However, if you feel that moving this function to Patch 4 where it is > actually used makes it more readable, I can do that. My suggestion was from a bisectability standpoint though. This is a fairly simple function, but it is generally recommended to ensure that newly added code gets exercized in the patch that it is introduced in: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/5.Posting.rst#n119 Regards, Naveen
next prev parent reply other threads:[~2020-04-03 10:35 UTC|newest] Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-03-27 11:32 [PATCH v4 0/6] [PATCH v4 0/6] Track and expose idle PURR and SPURR ticks Gautham R. Shenoy 2020-03-27 11:32 ` [PATCH v4 1/6] powerpc: Move idle_loop_prolog()/epilog() functions to header file Gautham R. Shenoy 2020-03-27 11:32 ` [PATCH v4 2/6] powerpc/idle: Add accessor function to always read latest idle PURR Gautham R. Shenoy 2020-04-01 9:42 ` Naveen N. Rao 2020-04-03 6:15 ` Gautham R Shenoy 2020-04-03 10:34 ` Naveen N. Rao [this message] 2020-04-03 11:24 ` Gautham R Shenoy 2020-03-27 11:32 ` [PATCH v4 3/6] powerpc/pseries: Account for SPURR ticks on idle CPUs Gautham R. Shenoy 2020-03-27 11:32 ` [PATCH v4 4/6] powerpc/sysfs: Show idle_purr and idle_spurr for every CPU Gautham R. Shenoy 2020-03-27 11:32 ` [PATCH v4 5/6] Documentation: Document sysfs interfaces purr, spurr, idle_purr, idle_spurr Gautham R. Shenoy 2020-04-01 9:45 ` Naveen N. Rao 2020-03-27 11:32 ` [PATCH v4 6/6] pseries/sysfs: Minimise IPI noise while reading [idle_][s]purr Gautham R. Shenoy 2020-04-01 9:58 ` Naveen N. Rao 2020-04-01 12:01 ` Gautham R Shenoy 2020-04-02 7:34 ` Naveen N. Rao 2020-04-03 6:28 ` Gautham R Shenoy 2020-04-03 18:10 ` Nathan Lynch
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=1585909343.fw0f8jg7ug.naveen@linux.ibm.com \ --to=naveen.n.rao@linux.vnet.ibm.com \ --cc=ego@linux.vnet.ibm.com \ --cc=kamalesh@linux.vnet.ibm.com \ --cc=linux-kernel@vger.kernel.org \ --cc=linuxppc-dev@lists.ozlabs.org \ --cc=mpe@ellerman.id.au \ --cc=nathanl@linux.ibm.com \ --cc=svaidy@linux.vnet.ibm.com \ --cc=tyreld@linux.ibm.com \ --subject='Re: [PATCH v4 2/6] powerpc/idle: Add accessor function to always read latest idle PURR' \ /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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).