lkml.org 
[lkml]   [2020]   [Nov]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [RFC][PATCH 3/9] sh/mm: Make pmd_t similar to pte_t
On Mon, Nov 30, 2020 at 02:10:42PM +0000, David Laight wrote:
> From: Peter Zijlstra
> > Sent: 30 November 2020 11:27
> >
> > Just like 64bit pte_t, have a low/high split in pmd_t.
> >
> > Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
> > ---
> > arch/sh/include/asm/pgtable-3level.h | 10 ++++++++--
> > 1 file changed, 8 insertions(+), 2 deletions(-)
> >
> > --- a/arch/sh/include/asm/pgtable-3level.h
> > +++ b/arch/sh/include/asm/pgtable-3level.h
> > @@ -28,9 +28,15 @@
> > #define pmd_ERROR(e) \
> > printk("%s:%d: bad pmd %016llx.\n", __FILE__, __LINE__, pmd_val(e))
> >
> > -typedef struct { unsigned long long pmd; } pmd_t;
> > +typedef struct {
> > + struct {
> > + unsigned long pmd_low;
> > + unsigned long pmd_high;
> > + };
> > + unsigned long long pmd;
> > +} pmd_t;
>
> Would it be better to use u32 and u64?

That would be inconsistent with the rest of SH. If you want to go clean
up SH, have at, but that's not what this series is for.

\
 
 \ /
  Last update: 2020-11-30 15:23    [W:0.046 / U:1.516 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site