All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
To: Matt Fleming <matt-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org>
Cc: "H. Peter Anvin" <hpa-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>,
	Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>,
	linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Borislav Petkov <bp-Gina5bIWoIWzQB+pC5nmwQ@public.gmane.org>
Subject: Re: [GIT PULL v2] EFI changes for v4.1
Date: Wed, 1 Apr 2015 15:11:53 +0200	[thread overview]
Message-ID: <20150401131153.GA13492@gmail.com> (raw)
In-Reply-To: <20150401130210.GA7931-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org>


* Matt Fleming <matt-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org> wrote:

> Folks,
> 
> This is the second version of the EFI v4.1 pull request without
> Yinghai Lu's patch.
> 
> It's based on v4.0-rc3, if that's not OK let me know and I'll respin it
> against something else.
> 
> The following changes since commit 9eccca0843205f87c00404b663188b88eb248051:
> 
>   Linux 4.0-rc3 (2015-03-08 16:09:09 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-next
> 
> for you to fetch changes up to a643375f4b175569bc3c03c7a3e758f845c1ccd9:
> 
>   efi/libstub: Retrieve FDT size when loaded from UEFI config table (2015-04-01 12:46:23 +0100)
> 
> ----------------------------------------------------------------
> Ard Biesheuvel (1):
>       efi/libstub: Retrieve FDT size when loaded from UEFI config table
> 
> Borislav Petkov (1):
>       x86/efi: Add a "debug" option to the efi= cmdline
> 
> Ingo Molnar (2):
>       efi: Disable interrupts around EFI calls, not in the epilog/prolog calls
>       efi: Clean up the efi_call_phys_[prolog|epilog]() save/restore interaction
> 
> Ivan Khoronzhuk (2):
>       firmware: dmi_scan: Use full dmi version for SMBIOS3
>       firmware: dmi_scan: Use direct access to static vars
> 
>  Documentation/kernel-parameters.txt     |  3 ++-
>  arch/x86/include/asm/efi.h              |  6 ++++--
>  arch/x86/platform/efi/efi.c             | 17 ++++++++++++---
>  arch/x86/platform/efi/efi_32.c          | 22 ++++++++++----------
>  arch/x86/platform/efi/efi_64.c          | 29 ++++++++++++++------------
>  drivers/firmware/dmi_scan.c             | 37 +++++++++++++++++++--------------
>  drivers/firmware/efi/libstub/arm-stub.c |  7 +++----
>  drivers/firmware/efi/libstub/efistub.h  |  2 +-
>  drivers/firmware/efi/libstub/fdt.c      |  7 ++++++-
>  include/linux/efi.h                     |  1 +
>  10 files changed, 79 insertions(+), 52 deletions(-)

Pulled into tip:core/efi, thanks a lot Matt!

	Ingo

WARNING: multiple messages have this Message-ID (diff)
From: Ingo Molnar <mingo@kernel.org>
To: Matt Fleming <matt@codeblueprint.co.uk>
Cc: "H. Peter Anvin" <hpa@zytor.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org,
	Borislav Petkov <bp@alien8.de>
Subject: Re: [GIT PULL v2] EFI changes for v4.1
Date: Wed, 1 Apr 2015 15:11:53 +0200	[thread overview]
Message-ID: <20150401131153.GA13492@gmail.com> (raw)
In-Reply-To: <20150401130210.GA7931@codeblueprint.co.uk>


* Matt Fleming <matt@codeblueprint.co.uk> wrote:

> Folks,
> 
> This is the second version of the EFI v4.1 pull request without
> Yinghai Lu's patch.
> 
> It's based on v4.0-rc3, if that's not OK let me know and I'll respin it
> against something else.
> 
> The following changes since commit 9eccca0843205f87c00404b663188b88eb248051:
> 
>   Linux 4.0-rc3 (2015-03-08 16:09:09 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-next
> 
> for you to fetch changes up to a643375f4b175569bc3c03c7a3e758f845c1ccd9:
> 
>   efi/libstub: Retrieve FDT size when loaded from UEFI config table (2015-04-01 12:46:23 +0100)
> 
> ----------------------------------------------------------------
> Ard Biesheuvel (1):
>       efi/libstub: Retrieve FDT size when loaded from UEFI config table
> 
> Borislav Petkov (1):
>       x86/efi: Add a "debug" option to the efi= cmdline
> 
> Ingo Molnar (2):
>       efi: Disable interrupts around EFI calls, not in the epilog/prolog calls
>       efi: Clean up the efi_call_phys_[prolog|epilog]() save/restore interaction
> 
> Ivan Khoronzhuk (2):
>       firmware: dmi_scan: Use full dmi version for SMBIOS3
>       firmware: dmi_scan: Use direct access to static vars
> 
>  Documentation/kernel-parameters.txt     |  3 ++-
>  arch/x86/include/asm/efi.h              |  6 ++++--
>  arch/x86/platform/efi/efi.c             | 17 ++++++++++++---
>  arch/x86/platform/efi/efi_32.c          | 22 ++++++++++----------
>  arch/x86/platform/efi/efi_64.c          | 29 ++++++++++++++------------
>  drivers/firmware/dmi_scan.c             | 37 +++++++++++++++++++--------------
>  drivers/firmware/efi/libstub/arm-stub.c |  7 +++----
>  drivers/firmware/efi/libstub/efistub.h  |  2 +-
>  drivers/firmware/efi/libstub/fdt.c      |  7 ++++++-
>  include/linux/efi.h                     |  1 +
>  10 files changed, 79 insertions(+), 52 deletions(-)

Pulled into tip:core/efi, thanks a lot Matt!

	Ingo

  parent reply	other threads:[~2015-04-01 13:11 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-01 13:02 [GIT PULL v2] EFI changes for v4.1 Matt Fleming
2015-04-01 13:02 ` Matt Fleming
     [not found] ` <20150401130210.GA7931-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org>
2015-04-01 13:11   ` Ingo Molnar [this message]
2015-04-01 13:11     ` Ingo Molnar

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=20150401131153.GA13492@gmail.com \
    --to=mingo-dgejt+ai2ygdnm+yrofe0a@public.gmane.org \
    --cc=bp-Gina5bIWoIWzQB+pC5nmwQ@public.gmane.org \
    --cc=hpa-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org \
    --cc=linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=matt-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org \
    --cc=tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.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.