stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4.4] x86/microcode/intel: Fix BDW late-loading revision check
@ 2018-01-24  2:31 Ben Hutchings
  2018-01-24  9:20 ` Greg Kroah-Hartman
  2018-01-24  9:25 ` Patch "x86/microcode/intel: Fix BDW late-loading revision check" has been added to the 4.4-stable tree gregkh
  0 siblings, 2 replies; 3+ messages in thread
From: Ben Hutchings @ 2018-01-24  2:31 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: stable

The backport of commit b94b73733171 ("x86/microcode/intel: Extend BDW
late-loading with a revision check") to 4.4-stable deleted a "return true"
statement.  This bug is not present upstream or other stable branches.

Signed-off-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
---
 arch/x86/kernel/cpu/microcode/intel.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/x86/kernel/cpu/microcode/intel.c b/arch/x86/kernel/cpu/microcode/intel.c
index b428a8174be1..ee011bd7934d 100644
--- a/arch/x86/kernel/cpu/microcode/intel.c
+++ b/arch/x86/kernel/cpu/microcode/intel.c
@@ -1005,6 +1005,7 @@ static bool is_blacklisted(unsigned int cpu)
 	    c->microcode < 0x0b000021) {
 		pr_err_once("Erratum BDF90: late loading with revision < 0x0b000021 (0x%x) disabled.\n", c->microcode);
 		pr_err_once("Please consider either early loading through initrd/built-in or a potential BIOS update.\n");
+		return true;
 	}
 
 	return false;
-- 
2.15.0.rc0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 4.4] x86/microcode/intel: Fix BDW late-loading revision check
  2018-01-24  2:31 [PATCH 4.4] x86/microcode/intel: Fix BDW late-loading revision check Ben Hutchings
@ 2018-01-24  9:20 ` Greg Kroah-Hartman
  2018-01-24  9:25 ` Patch "x86/microcode/intel: Fix BDW late-loading revision check" has been added to the 4.4-stable tree gregkh
  1 sibling, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2018-01-24  9:20 UTC (permalink / raw)
  To: Ben Hutchings; +Cc: stable

On Wed, Jan 24, 2018 at 02:31:19AM +0000, Ben Hutchings wrote:
> The backport of commit b94b73733171 ("x86/microcode/intel: Extend BDW
> late-loading with a revision check") to 4.4-stable deleted a "return true"
> statement.  This bug is not present upstream or other stable branches.
> 
> Signed-off-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> ---
>  arch/x86/kernel/cpu/microcode/intel.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/x86/kernel/cpu/microcode/intel.c b/arch/x86/kernel/cpu/microcode/intel.c
> index b428a8174be1..ee011bd7934d 100644
> --- a/arch/x86/kernel/cpu/microcode/intel.c
> +++ b/arch/x86/kernel/cpu/microcode/intel.c
> @@ -1005,6 +1005,7 @@ static bool is_blacklisted(unsigned int cpu)
>  	    c->microcode < 0x0b000021) {
>  		pr_err_once("Erratum BDF90: late loading with revision < 0x0b000021 (0x%x) disabled.\n", c->microcode);
>  		pr_err_once("Please consider either early loading through initrd/built-in or a potential BIOS update.\n");
> +		return true;
>  	}

That is really odd.  Thanks for catching this, now queued up.

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Patch "x86/microcode/intel: Fix BDW late-loading revision check" has been added to the 4.4-stable tree
  2018-01-24  2:31 [PATCH 4.4] x86/microcode/intel: Fix BDW late-loading revision check Ben Hutchings
  2018-01-24  9:20 ` Greg Kroah-Hartman
@ 2018-01-24  9:25 ` gregkh
  1 sibling, 0 replies; 3+ messages in thread
From: gregkh @ 2018-01-24  9:25 UTC (permalink / raw)
  To: ben.hutchings, gregkh; +Cc: stable, stable-commits


This is a note to let you know that I've just added the patch titled

    x86/microcode/intel: Fix BDW late-loading revision check

to the 4.4-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     x86-microcode-intel-fix-bdw-late-loading-revision-check.patch
and it can be found in the queue-4.4 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From ben.hutchings@codethink.co.uk  Wed Jan 24 10:19:07 2018
From: Ben Hutchings <ben.hutchings@codethink.co.uk>
Date: Wed, 24 Jan 2018 02:31:19 +0000
Subject: x86/microcode/intel: Fix BDW late-loading revision check
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: stable@vger.kernel.org
Message-ID: <20180124023119.kaendz4jiuejowxr@xylophone.i.decadent.org.uk>
Content-Disposition: inline

From: Ben Hutchings <ben.hutchings@codethink.co.uk>

The backport of commit b94b73733171 ("x86/microcode/intel: Extend BDW
late-loading with a revision check") to 4.4-stable deleted a "return true"
statement.  This bug is not present upstream or other stable branches.

Signed-off-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 arch/x86/kernel/cpu/microcode/intel.c |    1 +
 1 file changed, 1 insertion(+)

--- a/arch/x86/kernel/cpu/microcode/intel.c
+++ b/arch/x86/kernel/cpu/microcode/intel.c
@@ -1005,6 +1005,7 @@ static bool is_blacklisted(unsigned int
 	    c->microcode < 0x0b000021) {
 		pr_err_once("Erratum BDF90: late loading with revision < 0x0b000021 (0x%x) disabled.\n", c->microcode);
 		pr_err_once("Please consider either early loading through initrd/built-in or a potential BIOS update.\n");
+		return true;
 	}
 
 	return false;


Patches currently in stable-queue which might be from ben.hutchings@codethink.co.uk are

queue-4.4/x86-microcode-intel-fix-bdw-late-loading-revision-check.patch

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-01-24  9:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-24  2:31 [PATCH 4.4] x86/microcode/intel: Fix BDW late-loading revision check Ben Hutchings
2018-01-24  9:20 ` Greg Kroah-Hartman
2018-01-24  9:25 ` Patch "x86/microcode/intel: Fix BDW late-loading revision check" has been added to the 4.4-stable tree gregkh

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).