linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Nicholas Piggin <npiggin@gmail.com>
To: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@ozlabs.org
Subject: Re: [PATCH] powerpc/64s: Allow control of RFI flush via debugfs
Date: Wed, 17 Jan 2018 00:41:11 +1000	[thread overview]
Message-ID: <20180117004111.56fd9c4c@roar.ozlabs.ibm.com> (raw)
In-Reply-To: <20180116112431.1737-1-mpe@ellerman.id.au>

On Tue, 16 Jan 2018 22:24:31 +1100
Michael Ellerman <mpe@ellerman.id.au> wrote:

> Expose the state of the RFI flush (enabled/disabled) via debugfs, and
> allow it to be enabled/disabled at runtime.
> 
> eg: $ cat /sys/kernel/debug/powerpc/rfi_flush
>     1
>     $ echo 0 > /sys/kernel/debug/powerpc/rfi_flush
>     $ cat /sys/kernel/debug/powerpc/rfi_flush
>     0
> 
> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>

Reviewed-by: Nicholas Piggin <npiggin@gmail.com>

> ---
>  arch/powerpc/kernel/setup_64.c | 30 ++++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
> 
> diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c
> index 624d2a62d05d..e67413f4a8f0 100644
> --- a/arch/powerpc/kernel/setup_64.c
> +++ b/arch/powerpc/kernel/setup_64.c
> @@ -38,6 +38,7 @@
>  #include <linux/memory.h>
>  #include <linux/nmi.h>
>  
> +#include <asm/debugfs.h>
>  #include <asm/io.h>
>  #include <asm/kdump.h>
>  #include <asm/prom.h>
> @@ -902,6 +903,35 @@ void __init setup_rfi_flush(enum l1d_flush_type types, bool enable)
>  		rfi_flush_enable(enable);
>  }
>  
> +#ifdef CONFIG_DEBUG_FS
> +static int rfi_flush_set(void *data, u64 val)
> +{
> +	if (val == 1)
> +		rfi_flush_enable(true);
> +	else if (val == 0)
> +		rfi_flush_enable(false);
> +	else
> +		return -EINVAL;
> +
> +	return 0;
> +}
> +
> +static int rfi_flush_get(void *data, u64 *val)
> +{
> +	*val = rfi_flush ? 1 : 0;
> +	return 0;
> +}
> +
> +DEFINE_SIMPLE_ATTRIBUTE(fops_rfi_flush, rfi_flush_get, rfi_flush_set, "%llu\n");
> +
> +static __init int rfi_flush_debugfs_init(void)
> +{
> +	debugfs_create_file("rfi_flush", 0600, powerpc_debugfs_root, NULL, &fops_rfi_flush);
> +	return 0;
> +}
> +device_initcall(rfi_flush_debugfs_init);
> +#endif
> +
>  ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr, char *buf)
>  {
>  	if (rfi_flush)

  reply	other threads:[~2018-01-16 14:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-16 11:24 [PATCH] powerpc/64s: Allow control of RFI flush via debugfs Michael Ellerman
2018-01-16 14:41 ` Nicholas Piggin [this message]
2018-01-17 13:25 ` Michael Ellerman

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=20180117004111.56fd9c4c@roar.ozlabs.ibm.com \
    --to=npiggin@gmail.com \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=mpe@ellerman.id.au \
    /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).