linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] A microcode loader fix for 3.19
@ 2015-01-28 20:47 Borislav Petkov
  2015-01-29  6:52 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Borislav Petkov @ 2015-01-28 20:47 UTC (permalink / raw)
  To: x86-ml; +Cc: lkml

Hi guys,

please pull this last small fix for the microcode loader not erroring
out of its init routine properly.

Optimally, it should go with the last batch of tip/urgent stuff for
3.19, if possible.

Thanks.

---
The following changes since commit 26bc420b59a38e4e6685a73345a0def461136dce:

  Linux 3.19-rc6 (2015-01-25 20:04:41 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git tags/microcode_fix_for_3.19

for you to fetch changes up to da63865a01c6384d459464e5165d95d4f04878d8:

  x86, microcode: Return error from driver init code when loader is disabled (2015-01-28 09:23:40 +0100)

----------------------------------------------------------------
One final fix for 3.19 to address a wrongful deregistering of the
microcode loader module.

----------------------------------------------------------------
Boris Ostrovsky (1):
      x86, microcode: Return error from driver init code when loader is disabled

 arch/x86/kernel/cpu/microcode/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c
index 15c29096136b..36a83617eb21 100644
--- a/arch/x86/kernel/cpu/microcode/core.c
+++ b/arch/x86/kernel/cpu/microcode/core.c
@@ -552,7 +552,7 @@ static int __init microcode_init(void)
 	int error;
 
 	if (paravirt_enabled() || dis_ucode_ldr)
-		return 0;
+		return -EINVAL;
 
 	if (c->x86_vendor == X86_VENDOR_INTEL)
 		microcode_ops = init_intel_microcode();

-- 
Regards/Gruss,
    Boris.

ECO tip #101: Trim your mails when you reply.
--

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

* Re: [GIT PULL] A microcode loader fix for 3.19
  2015-01-28 20:47 [GIT PULL] A microcode loader fix for 3.19 Borislav Petkov
@ 2015-01-29  6:52 ` Ingo Molnar
  0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2015-01-29  6:52 UTC (permalink / raw)
  To: Borislav Petkov; +Cc: x86-ml, lkml


* Borislav Petkov <bp@suse.de> wrote:

> Hi guys,
> 
> please pull this last small fix for the microcode loader not erroring
> out of its init routine properly.
> 
> Optimally, it should go with the last batch of tip/urgent stuff for
> 3.19, if possible.
> 
> Thanks.
> 
> ---
> The following changes since commit 26bc420b59a38e4e6685a73345a0def461136dce:
> 
>   Linux 3.19-rc6 (2015-01-25 20:04:41 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git tags/microcode_fix_for_3.19
> 
> for you to fetch changes up to da63865a01c6384d459464e5165d95d4f04878d8:
> 
>   x86, microcode: Return error from driver init code when loader is disabled (2015-01-28 09:23:40 +0100)
> 
> ----------------------------------------------------------------
> One final fix for 3.19 to address a wrongful deregistering of the
> microcode loader module.
> 
> ----------------------------------------------------------------
> Boris Ostrovsky (1):
>       x86, microcode: Return error from driver init code when loader is disabled
> 
>  arch/x86/kernel/cpu/microcode/core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c
> index 15c29096136b..36a83617eb21 100644
> --- a/arch/x86/kernel/cpu/microcode/core.c
> +++ b/arch/x86/kernel/cpu/microcode/core.c
> @@ -552,7 +552,7 @@ static int __init microcode_init(void)
>  	int error;
>  
>  	if (paravirt_enabled() || dis_ucode_ldr)
> -		return 0;
> +		return -EINVAL;
>  
>  	if (c->x86_vendor == X86_VENDOR_INTEL)
>  		microcode_ops = init_intel_microcode();

Pulled into tip:x86/urgent, thanks Boris!

	Ingo

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

end of thread, other threads:[~2015-01-29  6:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-28 20:47 [GIT PULL] A microcode loader fix for 3.19 Borislav Petkov
2015-01-29  6:52 ` Ingo Molnar

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