From: "Michal Suchánek" <msuchanek@suse.de>
To: Murilo Opsfelder Araujo <muriloo@linux.vnet.ibm.com>
Cc: Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com>,
linuxppc-dev@lists.ozlabs.org, mpe@ellerman.id.au
Subject: Re: [PATCH v3 1/5] rfi-flush: Move the logic to avoid a redo into the debugfs code
Date: Fri, 16 Mar 2018 09:52:00 +0100 [thread overview]
Message-ID: <20180316095200.78f31a50@naga.suse.cz> (raw)
In-Reply-To: <4ae7af3f-219e-33dc-d7fa-49141d268222@linux.vnet.ibm.com>
On Thu, 15 Mar 2018 17:36:00 -0300
Murilo Opsfelder Araujo <muriloo@linux.vnet.ibm.com> wrote:
> On 03/14/2018 07:40 PM, Mauricio Faria de Oliveira wrote:
> > From: Michael Ellerman <mpe@ellerman.id.au>
> >
> > rfi_flush_enable() includes a check to see if we're already
> > enabled (or disabled), and in that case does nothing.
> >
> > But that means calling setup_rfi_flush() a 2nd time doesn't actually
> > work, which is a bit confusing.
> >
> > Move that check into the debugfs code, where it really belongs.
> >
> > Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
> > Signed-off-by: Mauricio Faria de Oliveira
> > <mauricfo@linux.vnet.ibm.com> ---
> > arch/powerpc/kernel/setup_64.c | 13 ++++++++-----
> > 1 file changed, 8 insertions(+), 5 deletions(-)
> >
> > diff --git a/arch/powerpc/kernel/setup_64.c
> > b/arch/powerpc/kernel/setup_64.c index c388cc3..3efc01a 100644
> > --- a/arch/powerpc/kernel/setup_64.c
> > +++ b/arch/powerpc/kernel/setup_64.c
> > @@ -846,9 +846,6 @@ static void do_nothing(void *unused)
> >
> > void rfi_flush_enable(bool enable)
> > {
> > - if (rfi_flush == enable)
> > - return;
> > -
> > if (enable) {
> > do_rfi_flush_fixups(enabled_flush_types);
> > on_each_cpu(do_nothing, NULL, 1);
> > @@ -902,13 +899,19 @@ void __init setup_rfi_flush(enum
> > l1d_flush_type types, bool enable) #ifdef CONFIG_DEBUG_FS
> > static int rfi_flush_set(void *data, u64 val)
> > {
> > + bool enable;
> > +
> > if (val == 1)
> > - rfi_flush_enable(true);
> > + enable = true;
> > else if (val == 0)
> > - rfi_flush_enable(false);
> > + enable = false;
> > else
> > return -EINVAL;
> >
> > + /* Only do anything if we're changing state */
> > + if (enable != rfi_flush)
>
> Hi, Mauricio.
>
> Do we need to take into account if no_rfi_flush == true?
I think it makes sense you are able to override that using debugfs.
It's interface used for diagnostics and testing.
If this was in sysfs it would be a different story.
Thanks
Michal
next prev parent reply other threads:[~2018-03-16 8:52 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-14 22:40 [PATCH v3 0/5] Setup RFI flush after PowerVM LPM migration Mauricio Faria de Oliveira
2018-03-14 22:40 ` [PATCH v3 1/5] rfi-flush: Move the logic to avoid a redo into the debugfs code Mauricio Faria de Oliveira
2018-03-15 20:36 ` Murilo Opsfelder Araujo
2018-03-16 8:52 ` Michal Suchánek [this message]
2018-03-16 16:42 ` Mauricio Faria de Oliveira
2018-03-28 14:13 ` [v3, " Michael Ellerman
2018-03-14 22:40 ` [PATCH v3 2/5] rfi-flush: Make it possible to call setup_rfi_flush() again Mauricio Faria de Oliveira
2018-03-14 22:40 ` [PATCH v3 3/5] rfi-flush: Always enable fallback flush on pseries Mauricio Faria de Oliveira
2018-03-14 22:40 ` [PATCH v3 4/5] rfi-flush: Differentiate enabled and patched flush types Mauricio Faria de Oliveira
2018-03-14 22:40 ` [PATCH v3 5/5] rfi-flush: Call setup_rfi_flush() after LPM migration Mauricio Faria de Oliveira
2018-03-14 22:40 ` [TESTS] Create 'enabled_flush_types' boot option, and short-circuit LPM Mauricio Faria de Oliveira
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=20180316095200.78f31a50@naga.suse.cz \
--to=msuchanek@suse.de \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mauricfo@linux.vnet.ibm.com \
--cc=mpe@ellerman.id.au \
--cc=muriloo@linux.vnet.ibm.com \
/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 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).