All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: ira.weiny@intel.com, Ingo Molnar <mingo@redhat.com>,
	Borislav Petkov <bp@alien8.de>, Andy Lutomirski <luto@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Dave Hansen <dave.hansen@linux.intel.com>
Cc: x86@kernel.org, Andrew Morton <akpm@linux-foundation.org>,
	Fenghua Yu <fenghua.yu@intel.com>,
	linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-nvdimm@lists.01.org, linux-mm@kvack.org,
	linux-kselftest@vger.kernel.org
Subject: Re: [PATCH V2 00/10] PKS: Add Protection Keys Supervisor (PKS) support
Date: Tue, 03 Nov 2020 00:36:16 +0100	[thread overview]
Message-ID: <871rhb8h73.fsf@nanos.tec.linutronix.de> (raw)
In-Reply-To: <20201102205320.1458656-1-ira.weiny@intel.com>

On Mon, Nov 02 2020 at 12:53, ira weiny wrote:
> Fenghua Yu (2):
>   x86/pks: Enable Protection Keys Supervisor (PKS)
>   x86/pks: Add PKS kernel API
>
> Ira Weiny (7):
>   x86/pkeys: Create pkeys_common.h
>   x86/fpu: Refactor arch_set_user_pkey_access() for PKS support
>   x86/pks: Preserve the PKRS MSR on context switch
>   x86/entry: Pass irqentry_state_t by reference
>   x86/entry: Preserve PKRS MSR across exceptions
>   x86/fault: Report the PKRS state on fault
>   x86/pks: Add PKS test code
>
> Thomas Gleixner (1):
>   x86/entry: Move nmi entry/exit into common code

So the actual patch ordering is:

   x86/pkeys: Create pkeys_common.h
   x86/fpu: Refactor arch_set_user_pkey_access() for PKS support
   x86/pks: Enable Protection Keys Supervisor (PKS)
   x86/pks: Preserve the PKRS MSR on context switch
   x86/pks: Add PKS kernel API

   x86/entry: Move nmi entry/exit into common code
   x86/entry: Pass irqentry_state_t by reference

   x86/entry: Preserve PKRS MSR across exceptions
   x86/fault: Report the PKRS state on fault
   x86/pks: Add PKS test code

This is the wrong ordering, really.

     x86/entry: Move nmi entry/exit into common code

is a general cleanup and has absolutely nothing to do with PKRS.So this
wants to go first.

Also:

    x86/entry: Move nmi entry/exit into common code

is a prerequisite for the rest. So why is it in the middle of the
series?

And then you enable all that muck _before_ it is usable:

   Patch 3/N: x86/pks: Enable Protection Keys Supervisor (PKS)

Bisectability is overrrated, right?

Once again: Read an understand Documentation/process/*

Aside of that using a spell checker is not optional.

Thanks,

        tglx
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

WARNING: multiple messages have this Message-ID (diff)
From: Thomas Gleixner <tglx@linutronix.de>
To: ira.weiny@intel.com, Ingo Molnar <mingo@redhat.com>,
	Borislav Petkov <bp@alien8.de>, Andy Lutomirski <luto@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Dave Hansen <dave.hansen@linux.intel.com>
Cc: Ira Weiny <ira.weiny@intel.com>,
	x86@kernel.org, Dan Williams <dan.j.williams@intel.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Fenghua Yu <fenghua.yu@intel.com>,
	linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-nvdimm@lists.01.org, linux-mm@kvack.org,
	linux-kselftest@vger.kernel.org
Subject: Re: [PATCH V2 00/10] PKS: Add Protection Keys Supervisor (PKS) support
Date: Tue, 03 Nov 2020 00:36:16 +0100	[thread overview]
Message-ID: <871rhb8h73.fsf@nanos.tec.linutronix.de> (raw)
In-Reply-To: <20201102205320.1458656-1-ira.weiny@intel.com>

On Mon, Nov 02 2020 at 12:53, ira weiny wrote:
> Fenghua Yu (2):
>   x86/pks: Enable Protection Keys Supervisor (PKS)
>   x86/pks: Add PKS kernel API
>
> Ira Weiny (7):
>   x86/pkeys: Create pkeys_common.h
>   x86/fpu: Refactor arch_set_user_pkey_access() for PKS support
>   x86/pks: Preserve the PKRS MSR on context switch
>   x86/entry: Pass irqentry_state_t by reference
>   x86/entry: Preserve PKRS MSR across exceptions
>   x86/fault: Report the PKRS state on fault
>   x86/pks: Add PKS test code
>
> Thomas Gleixner (1):
>   x86/entry: Move nmi entry/exit into common code

So the actual patch ordering is:

   x86/pkeys: Create pkeys_common.h
   x86/fpu: Refactor arch_set_user_pkey_access() for PKS support
   x86/pks: Enable Protection Keys Supervisor (PKS)
   x86/pks: Preserve the PKRS MSR on context switch
   x86/pks: Add PKS kernel API

   x86/entry: Move nmi entry/exit into common code
   x86/entry: Pass irqentry_state_t by reference

   x86/entry: Preserve PKRS MSR across exceptions
   x86/fault: Report the PKRS state on fault
   x86/pks: Add PKS test code

This is the wrong ordering, really.

     x86/entry: Move nmi entry/exit into common code

is a general cleanup and has absolutely nothing to do with PKRS.So this
wants to go first.

Also:

    x86/entry: Move nmi entry/exit into common code

is a prerequisite for the rest. So why is it in the middle of the
series?

And then you enable all that muck _before_ it is usable:

   Patch 3/N: x86/pks: Enable Protection Keys Supervisor (PKS)

Bisectability is overrrated, right?

Once again: Read an understand Documentation/process/*

Aside of that using a spell checker is not optional.

Thanks,

        tglx

  parent reply	other threads:[~2020-11-02 23:36 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-02 20:53 [PATCH V2 00/10] PKS: Add Protection Keys Supervisor (PKS) support ira.weiny
2020-11-02 20:53 ` ira.weiny
2020-11-02 20:53 ` [PATCH V2 01/10] x86/pkeys: Create pkeys_common.h ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-02 20:53 ` [PATCH V2 02/10] x86/fpu: Refactor arch_set_user_pkey_access() for PKS support ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-02 20:53 ` [PATCH V2 03/10] x86/pks: Enable Protection Keys Supervisor (PKS) ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-02 20:53 ` [PATCH V2 04/10] x86/pks: Preserve the PKRS MSR on context switch ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-02 20:53 ` [PATCH V2 05/10] x86/pks: Add PKS kernel API ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-03  6:50   ` Greg KH
2020-11-03  6:50     ` Greg KH
2020-11-03 17:53     ` Ira Weiny
2020-11-03 17:53       ` Ira Weiny
2020-11-03 18:14       ` Greg KH
2020-11-03 18:14         ` Greg KH
2020-11-03 18:42         ` Ira Weiny
2020-11-03 18:42           ` Ira Weiny
2020-11-02 20:53 ` [PATCH V2 06/10] x86/entry: Move nmi entry/exit into common code ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-04 22:06   ` [tip: core/entry] " tip-bot2 for Thomas Gleixner
2020-11-02 20:53 ` [PATCH V2 07/10] x86/entry: Pass irqentry_state_t by reference ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-02 20:53 ` [PATCH V2 08/10] x86/entry: Preserve PKRS MSR across exceptions ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-02 20:53 ` [PATCH V2 09/10] x86/fault: Report the PKRS state on fault ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-02 20:53 ` [PATCH V2 10/10] x86/pks: Add PKS test code ira.weiny
2020-11-02 20:53   ` ira.weiny
2020-11-02 23:36 ` Thomas Gleixner [this message]
2020-11-02 23:36   ` [PATCH V2 00/10] PKS: Add Protection Keys Supervisor (PKS) support Thomas Gleixner
2020-11-02 23:41   ` Thomas Gleixner
2020-11-02 23:41     ` Thomas Gleixner
2020-11-04 17:46   ` Ira Weiny
2020-11-04 17:46     ` Ira Weiny
2020-11-04 22:00     ` Thomas Gleixner
2020-11-04 22:00       ` Thomas Gleixner
2020-11-04 22:45       ` Ira Weiny
2020-11-04 22:45         ` Ira Weiny
2020-11-04 22:54         ` Ira Weiny
2020-11-04 22:54           ` Ira Weiny

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=871rhb8h73.fsf@nanos.tec.linutronix.de \
    --to=tglx@linutronix.de \
    --cc=akpm@linux-foundation.org \
    --cc=bp@alien8.de \
    --cc=dave.hansen@linux.intel.com \
    --cc=fenghua.yu@intel.com \
    --cc=ira.weiny@intel.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux-nvdimm@lists.01.org \
    --cc=luto@kernel.org \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=x86@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.