From: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
To: Michael Ellerman <mpe@ellerman.id.au>, linuxppc-dev@lists.ozlabs.org
Cc: benh@kernel.crashing.org, paulus@samba.org,
aneesh.kumar@linux.vnet.ibm.com
Subject: Re: [PATCH] powerpc/mm: Invalidate partition table cache on host proc tbl base update
Date: Mon, 14 Aug 2017 17:24:31 +1000 [thread overview]
Message-ID: <1502695471.2143.2.camel@gmail.com> (raw)
In-Reply-To: <871solnidm.fsf@concordia.ellerman.id.au>
On Wed, 2017-08-09 at 20:30 +1000, Michael Ellerman wrote:
> Suraj Jitindar Singh <sjitindarsingh@gmail.com> writes:
>
> > The host process table base is stored in the partition table by
> > calling
> > the function native_register_process_table(). Currently this just
> > sets
> > the entry in memory and is missing a proceeding cache invalidation
> > instruction. Any update to the partition table should be followed
> > by a
> > cache invalidation instruction specifying invalidation of the
> > caching of
> > any partition table entries (RIC = 2, PRS = 0).
> >
> > We already have a function to update the partition table with the
> > required cache invalidation instructions -
> > mmu_partition_table_set_entry().
> > Update the native_register_process_table() function to call
> > mmu_partition_table_set_entry(), this ensures all appropriate
> > invalidation will be performed.
> >
> > Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
> > ---
> > arch/powerpc/mm/pgtable-radix.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/arch/powerpc/mm/pgtable-radix.c
> > b/arch/powerpc/mm/pgtable-radix.c
> > index 671a45d..1d5178f 100644
> > --- a/arch/powerpc/mm/pgtable-radix.c
> > +++ b/arch/powerpc/mm/pgtable-radix.c
> > @@ -33,7 +33,8 @@ static int native_register_process_table(unsigned
> > long base, unsigned long pg_sz
> > {
> > unsigned long patb1 = base | table_size | PATB_GR;
> >
> > - partition_tb->patb1 = cpu_to_be64(patb1);
> > + mmu_partition_table_set_entry(0, be64_to_cpu(partition_tb-
> > >patb0),
> > + patb1);
>
> This is really a bit gross.
>
> Can we agree on whether partition_tb is an array or not?
Well it is an array, it's just we only ever want the first element in
this function. That being said we might as well access it as an array
to make that clear.
>
> How about ...
>
> cheers
>
> diff --git a/arch/powerpc/mm/pgtable-radix.c
> b/arch/powerpc/mm/pgtable-radix.c
> index c1185c8ecb22..5d8be076f8e5 100644
> --- a/arch/powerpc/mm/pgtable-radix.c
> +++ b/arch/powerpc/mm/pgtable-radix.c
> @@ -28,9 +28,13 @@
> static int native_register_process_table(unsigned long base,
> unsigned long pg_sz,
> unsigned long table_size)
> {
> - unsigned long patb1 = base | table_size | PATB_GR;
> + unsigned long patb0, patb1;
> +
> + patb0 = be64_to_cpu(partition_tb[0].patb0);
> + patb1 = base | table_size | PATB_GR;
> +
> + mmu_partition_table_set_entry(0, patb0, patb1);
>
> - partition_tb->patb1 = cpu_to_be64(patb1);
> return 0;
> }
Looks good :)
next prev parent reply other threads:[~2017-08-14 7:24 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-03 4:15 [PATCH] powerpc/mm: Invalidate partition table cache on host proc tbl base update Suraj Jitindar Singh
2017-08-03 6:30 ` Michael Ellerman
2017-08-03 7:35 ` Benjamin Herrenschmidt
2017-08-04 1:02 ` Suraj Jitindar Singh
2017-08-04 1:31 ` Benjamin Herrenschmidt
2017-08-04 1:53 ` Suraj Jitindar Singh
2017-08-04 3:33 ` Michael Ellerman
2017-08-04 3:49 ` Aneesh Kumar K.V
2017-08-09 10:30 ` Michael Ellerman
2017-08-14 7:24 ` Suraj Jitindar Singh [this message]
2017-08-11 12:19 ` 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=1502695471.2143.2.camel@gmail.com \
--to=sjitindarsingh@gmail.com \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=benh@kernel.crashing.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mpe@ellerman.id.au \
--cc=paulus@samba.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 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).