All of lore.kernel.org
 help / color / mirror / Atom feed
From: "H. Peter Anvin" <hpa-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
To: Leif Lindholm <leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Cc: linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-ia64-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	matt.fleming-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
	tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org,
	patches-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org, "Luck,
	Tony" <tony.luck-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Subject: Re: [PATCH 0/4] Make commonly useful UEFI functions common
Date: Thu, 01 Aug 2013 13:26:41 -0700	[thread overview]
Message-ID: <51FAC481.2050905@zytor.com> (raw)
In-Reply-To: <1375202858-28470-1-git-send-email-leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

On 07/30/2013 09:47 AM, Leif Lindholm wrote:
> This set breaks out some common code from x86/ia64 EFI support
> code and puts it into drivers/firmware/efi.
> 
> First it takes the definition of the global "efi" data structure
> and moves it into global efi.c. Then it implements a common version
> of efi_config_init().
> 
> Secondly it breaks the efi_lookup_mapped_addr() function out of x86
> and places it in global efi.c, for shared use with future ARM
> patches.
> 
> IA64 code compile tested only.
> 
> Pardon the delay in getting this out - back to back conferences
> followed by a bad case of the man flu.
> 
> Leif Lindholm (4):
>   efi: provide a generic efi_config_init()
>   efi: x86: use common code for (U)EFI configuration scanning
>   efi: ia64: use common code for (U)EFI configuration scanning
>   efi: x86: make efi_lookup_mapped_addr() a common function
> 
>  arch/ia64/include/asm/io.h  |    1 +
>  arch/ia64/kernel/efi.c      |   54 ++++-------------
>  arch/x86/platform/efi/efi.c |  124 +++------------------------------------
>  drivers/firmware/efi/efi.c  |  136 +++++++++++++++++++++++++++++++++++++++++++
>  include/linux/efi.h         |    7 +++
>  5 files changed, 163 insertions(+), 159 deletions(-)
> 

Matt, I assume you're picking this up once the missing bits are plugged
in, right?

	-hpa

WARNING: multiple messages have this Message-ID (diff)
From: "H. Peter Anvin" <hpa@zytor.com>
To: Leif Lindholm <leif.lindholm@linaro.org>
Cc: linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-ia64@vger.kernel.org, matt.fleming@intel.com,
	tglx@linutronix.de, patches@linaro.org, "Luck,
	Tony" <tony.luck@intel.com>
Subject: Re: [PATCH 0/4] Make commonly useful UEFI functions common
Date: Thu, 01 Aug 2013 20:26:41 +0000	[thread overview]
Message-ID: <51FAC481.2050905@zytor.com> (raw)
In-Reply-To: <1375202858-28470-1-git-send-email-leif.lindholm@linaro.org>

On 07/30/2013 09:47 AM, Leif Lindholm wrote:
> This set breaks out some common code from x86/ia64 EFI support
> code and puts it into drivers/firmware/efi.
> 
> First it takes the definition of the global "efi" data structure
> and moves it into global efi.c. Then it implements a common version
> of efi_config_init().
> 
> Secondly it breaks the efi_lookup_mapped_addr() function out of x86
> and places it in global efi.c, for shared use with future ARM
> patches.
> 
> IA64 code compile tested only.
> 
> Pardon the delay in getting this out - back to back conferences
> followed by a bad case of the man flu.
> 
> Leif Lindholm (4):
>   efi: provide a generic efi_config_init()
>   efi: x86: use common code for (U)EFI configuration scanning
>   efi: ia64: use common code for (U)EFI configuration scanning
>   efi: x86: make efi_lookup_mapped_addr() a common function
> 
>  arch/ia64/include/asm/io.h  |    1 +
>  arch/ia64/kernel/efi.c      |   54 ++++-------------
>  arch/x86/platform/efi/efi.c |  124 +++------------------------------------
>  drivers/firmware/efi/efi.c  |  136 +++++++++++++++++++++++++++++++++++++++++++
>  include/linux/efi.h         |    7 +++
>  5 files changed, 163 insertions(+), 159 deletions(-)
> 

Matt, I assume you're picking this up once the missing bits are plugged
in, right?

	-hpa


WARNING: multiple messages have this Message-ID (diff)
From: "H. Peter Anvin" <hpa@zytor.com>
To: Leif Lindholm <leif.lindholm@linaro.org>
Cc: linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-ia64@vger.kernel.org, matt.fleming@intel.com,
	tglx@linutronix.de, patches@linaro.org, "Luck,
	Tony" <tony.luck@intel.com>
Subject: Re: [PATCH 0/4] Make commonly useful UEFI functions common
Date: Thu, 01 Aug 2013 13:26:41 -0700	[thread overview]
Message-ID: <51FAC481.2050905@zytor.com> (raw)
In-Reply-To: <1375202858-28470-1-git-send-email-leif.lindholm@linaro.org>

On 07/30/2013 09:47 AM, Leif Lindholm wrote:
> This set breaks out some common code from x86/ia64 EFI support
> code and puts it into drivers/firmware/efi.
> 
> First it takes the definition of the global "efi" data structure
> and moves it into global efi.c. Then it implements a common version
> of efi_config_init().
> 
> Secondly it breaks the efi_lookup_mapped_addr() function out of x86
> and places it in global efi.c, for shared use with future ARM
> patches.
> 
> IA64 code compile tested only.
> 
> Pardon the delay in getting this out - back to back conferences
> followed by a bad case of the man flu.
> 
> Leif Lindholm (4):
>   efi: provide a generic efi_config_init()
>   efi: x86: use common code for (U)EFI configuration scanning
>   efi: ia64: use common code for (U)EFI configuration scanning
>   efi: x86: make efi_lookup_mapped_addr() a common function
> 
>  arch/ia64/include/asm/io.h  |    1 +
>  arch/ia64/kernel/efi.c      |   54 ++++-------------
>  arch/x86/platform/efi/efi.c |  124 +++------------------------------------
>  drivers/firmware/efi/efi.c  |  136 +++++++++++++++++++++++++++++++++++++++++++
>  include/linux/efi.h         |    7 +++
>  5 files changed, 163 insertions(+), 159 deletions(-)
> 

Matt, I assume you're picking this up once the missing bits are plugged
in, right?

	-hpa


  parent reply	other threads:[~2013-08-01 20:26 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-30 16:47 [PATCH 0/4] Make commonly useful UEFI functions common Leif Lindholm
2013-07-30 16:47 ` Leif Lindholm
2013-07-30 16:47 ` Leif Lindholm
2013-07-30 16:47 ` [PATCH 1/4] efi: provide a generic efi_config_init() Leif Lindholm
2013-07-30 16:47   ` Leif Lindholm
     [not found]   ` <1375202858-28470-2-git-send-email-leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2013-07-30 17:53     ` Tony Luck
2013-07-30 17:53       ` Tony Luck
2013-07-30 17:53       ` Tony Luck
2013-07-30 18:02       ` Leif Lindholm
2013-07-30 18:02         ` Leif Lindholm
2013-07-30 18:14         ` Tony Luck
2013-07-30 18:14           ` Tony Luck
2013-07-30 16:47 ` [PATCH 2/4] efi: x86: use common code for (U)EFI configuration scanning Leif Lindholm
2013-07-30 16:47   ` Leif Lindholm
2013-07-30 16:47 ` [PATCH 3/4] efi: ia64: " Leif Lindholm
2013-07-30 16:47   ` Leif Lindholm
2013-07-30 16:47 ` [PATCH 4/4] efi: x86: make efi_lookup_mapped_addr() a common function Leif Lindholm
2013-07-30 16:47   ` Leif Lindholm
2013-07-31  8:58   ` Matt Fleming
2013-07-31  8:58     ` Matt Fleming
     [not found]     ` <51F8D1AC.4040501-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2013-08-01 10:11       ` Leif Lindholm
2013-08-01 10:11         ` Leif Lindholm
2013-08-01 10:11         ` Leif Lindholm
     [not found] ` <1375202858-28470-1-git-send-email-leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2013-07-30 19:57   ` [PATCH 0/4] Make commonly useful UEFI functions common Tony Luck
2013-07-30 19:57     ` Tony Luck
2013-07-30 19:57     ` Tony Luck
2013-08-01 20:26   ` H. Peter Anvin [this message]
2013-08-01 20:26     ` H. Peter Anvin
2013-08-01 20:26     ` H. Peter Anvin
2013-08-01 20:45     ` Fleming, Matt
2013-08-01 20:45       ` Fleming, Matt

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=51FAC481.2050905@zytor.com \
    --to=hpa-ymnouzjc4hwavxtiumwx3w@public.gmane.org \
    --cc=leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-ia64-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=matt.fleming-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=patches-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org \
    --cc=tony.luck-ral2JQCrhuEAvxtiuMwx3w@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.