linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Geert Uytterhoeven <geert@linux-m68k.org>
To: Jeff Xu <jeffxu@chromium.org>
Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
	akpm@linux-foundation.org,  Liam.Howlett@oracle.com,
	agordeev@linux.ibm.com, borntraeger@linux.ibm.com,
	 gor@linux.ibm.com, hca@linux.ibm.com, kees@kernel.org,
	 linux-hardening@vger.kernel.org, linux-kernel@vger.kernel.org,
	 linux-mm@kvack.org, svens@linux.ibm.com,
	thomas.weissschuh@linutronix.de
Subject: Re: [PATCH] mseal sysmap: add arch-support txt
Date: Mon, 17 Mar 2025 20:14:09 +0100	[thread overview]
Message-ID: <CAMuHMdWUHwRXR1VHEVJm36Dp0B_H6SNwtWHAW1dMQ-iM4ORUWQ@mail.gmail.com> (raw)
In-Reply-To: <CABi2SkWmxwM-MbfmRCZvBYek8KpmOKPMsFmb=-eZTgKfp3AN6w@mail.gmail.com>

Hi Jeff,

On Mon, 17 Mar 2025 at 20:02, Jeff Xu <jeffxu@chromium.org> wrote:
> On Mon, Mar 17, 2025 at 11:14 AM Jeff Xu <jeffxu@chromium.org> wrote:
> > On Fri, Mar 14, 2025 at 3:41 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> > > On Thu, 13 Mar 2025 at 23:26, Jeff Xu <jeffxu@chromium.org> wrote:
> > > > On Wed, Mar 12, 2025 at 10:21 PM Lorenzo Stoakes
> > > > <lorenzo.stoakes@oracle.com> wrote:
> > > > > On Thu, Mar 13, 2025 at 12:06:23AM +0000, jeffxu@chromium.org wrote:
> > > > > > From: Jeff Xu <jeffxu@chromium.org>
> > > > > > Add Documentation/features/core/mseal_sys_mappings/arch-support.txt
> > > > > >
> > > > > > Signed-off-by: Jeff Xu <jeffxu@chromium.org>
> > >
> > > Thanks for your patch!
>
> I used "find * |xargs grep -i  CONFIG_64BIT" to look for CONFIG_64BIT
> under arch/, and together with internet search/wiki page, and below is
> the proposed update.

That way you only find users of the symbol, not where it is defined.

You can use

    git grep -W "config\s*64BIT" -- arch/

to find out which architectures are 32-bit, 64-bit, or support both.

> > > > > > --- /dev/null
> > > > > > +++ b/Documentation/features/core/mseal_sys_mappings/arch-support.txt
> > > > > > @@ -0,0 +1,30 @@
> > > > > > +#
> > > > > > +# Feature name:          mseal-system-mappings
> > > > > > +#         Kconfig:       ARCH_SUPPORTS_MSEAL_SYSTEM_MAPPINGS
> > > > > > +#         description:   arch supports mseal system mappings
> > > > > > +#
> > > > > > +    -----------------------
> > > > > > +    |         arch |status|
> > > > > > +    -----------------------
> > > > > > +    |       alpha: | TODO |
> No CONFIG_64BIT found under arch/alpha, but search results show alpha
> supports 64 bits. Keep as TODO.

Alpha is 64-bit only. So the code under arch/alpha/ does not need to check for
CONFIG_64BIT, hence you didn't find it;-)

> > > > > > +    |         arc: | TODO |
> > > > > > +    |         arm: |  N/A |
> > > > > > +    |       arm64: |  ok  |
> > > > > > +    |        csky: | TODO |
> (N/A)
>
> > > > > > +    |     hexagon: | TODO |
> No CONFIG_64BIT found under arch/hexagon, but search results show
> hexagon supports 64 bits. Keep as TODO.

32-bit only on Linux.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds


  reply	other threads:[~2025-03-17 19:14 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-13  0:06 jeffxu
2025-03-13  5:21 ` Lorenzo Stoakes
2025-03-13 22:25   ` Jeff Xu
2025-03-14 10:41     ` Geert Uytterhoeven
2025-03-17 18:14       ` Jeff Xu
2025-03-17 19:02         ` Jeff Xu
2025-03-17 19:14           ` Geert Uytterhoeven [this message]
2025-03-18 17:21             ` Jeff Xu
2025-03-18 18:39               ` Jeff Xu
2025-03-19  8:17                 ` Geert Uytterhoeven
2025-03-19 16:56                   ` Jeff Xu
2025-03-17 13:22     ` Heiko Carstens

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=CAMuHMdWUHwRXR1VHEVJm36Dp0B_H6SNwtWHAW1dMQ-iM4ORUWQ@mail.gmail.com \
    --to=geert@linux-m68k.org \
    --cc=Liam.Howlett@oracle.com \
    --cc=agordeev@linux.ibm.com \
    --cc=akpm@linux-foundation.org \
    --cc=borntraeger@linux.ibm.com \
    --cc=gor@linux.ibm.com \
    --cc=hca@linux.ibm.com \
    --cc=jeffxu@chromium.org \
    --cc=kees@kernel.org \
    --cc=linux-hardening@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=lorenzo.stoakes@oracle.com \
    --cc=svens@linux.ibm.com \
    --cc=thomas.weissschuh@linutronix.de \
    /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