All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] EFI changes for v3.8
@ 2012-11-13 22:00 ` Matt Fleming
  0 siblings, 0 replies; 6+ messages in thread
From: Matt Fleming @ 2012-11-13 22:00 UTC (permalink / raw)
  To: Ingo Molnar, H. Peter Anvin, Thomas Gleixner; +Cc: linux-kernel, linux-efi

Hi guys,

The following changes since commit 5189c2a7c7769ee9d037d76c1a7b8550ccf3481c:

  x86: efi: Turn off efi_enabled after setup on mixed fw/kernel (2012-10-25 19:09:40 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-for-3.8

for you to fetch changes up to fdafa1c8261d4fe2350e63e8dd315bfd58674455:

  Merge branch 'next' (2012-11-13 21:30:02 +0000)

----------------------------------------------------------------

EFI updates for v3.8

  * A new EFI variable filesystem, efivarfs, which addresses the
    shortcomings of the old sysfs EFI variable code.

  * We now switch to a 1:1 mapped pagetable for all virtual EFI
    calls. This is actually a workaround for an ASUS firmware bug
    which expects the physical mappings to still be around at runtime.

  * Because of the above fix Jan's patch to use EFI for the platform
    wall clock can be re-applied (it was originally reverted because
    it broke some ASUS machines).

----------------------------------------------------------------
Andy Whitcroft (5):
      efivarfs: efivarfs_file_read ensure we free data in error paths
      efivarfs: efivarfs_create() ensure we drop our reference on inode on error
      efivarfs: efivarfs_fill_super() fix inode reference counts
      efivarfs: efivarfs_fill_super() ensure we free our temporary name
      efivarfs: efivarfs_fill_super() ensure we clean up correctly on error

Jan Beulich (1):
      x86-64/efi: Use EFI to deal with platform wall clock (again)

Jeremy Kerr (3):
      efi: Handle deletions and size changes in efivarfs_write_file
      efivarfs: Implement exclusive access for {get,set}_variable
      efi: Clarify GUID length calculations

Lee, Chun-Yi (1):
      efi: add efivars kobject to efi sysfs folder

Matt Fleming (11):
      efivarfs: Add documentation for the EFI variable filesystem
      x86, mm: Include the entire kernel memory map in trampoline_pgd
      x86, efi: 1:1 pagetable mapping for virtual EFI calls
      efivarfs: Return an error if we fail to read a variable
      efivarfs: Replace magic number with sizeof(attributes)
      efivarfs: Add unique magic number
      efivarfs: Make 'datasize' unsigned long
      efivarfs: Return a consistent error when efivarfs_get_inode() fails
      efivarfs: Fix return value of efivarfs_file_write()
      efivarfs: Use query_variable_info() to limit kmalloc()
      Merge branch 'next'

Matthew Garrett (1):
      efi: Add support for a UEFI variable filesystem

Xiaoyan Zhang (1):
      x86/kernel: remove tboot 1:1 page table creation code

 Documentation/filesystems/00-INDEX     |   2 +
 Documentation/filesystems/efivarfs.txt |  16 +
 arch/x86/include/asm/efi.h             |  28 +-
 arch/x86/kernel/tboot.c                |  78 +----
 arch/x86/mm/init_64.c                  |   9 +-
 arch/x86/mm/ioremap.c                  | 105 +++++++
 arch/x86/mm/pageattr.c                 |  10 +-
 arch/x86/platform/efi/efi.c            |  29 +-
 arch/x86/platform/efi/efi_64.c         |  15 +
 arch/x86/realmode/init.c               |  17 +-
 drivers/firmware/efivars.c             | 513 ++++++++++++++++++++++++++++++++-
 include/linux/efi.h                    |   9 +-
 include/uapi/linux/magic.h             |   1 +
 init/main.c                            |   8 +-
 14 files changed, 714 insertions(+), 126 deletions(-)
 create mode 100644 Documentation/filesystems/efivarfs.txt

-- 
Matt Fleming, Intel Open Source Technology Center


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

* [GIT PULL] EFI changes for v3.8
@ 2012-11-13 22:00 ` Matt Fleming
  0 siblings, 0 replies; 6+ messages in thread
From: Matt Fleming @ 2012-11-13 22:00 UTC (permalink / raw)
  To: Ingo Molnar, H. Peter Anvin, Thomas Gleixner
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-efi

Hi guys,

The following changes since commit 5189c2a7c7769ee9d037d76c1a7b8550ccf3481c:

  x86: efi: Turn off efi_enabled after setup on mixed fw/kernel (2012-10-25 19:09:40 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-for-3.8

for you to fetch changes up to fdafa1c8261d4fe2350e63e8dd315bfd58674455:

  Merge branch 'next' (2012-11-13 21:30:02 +0000)

----------------------------------------------------------------

EFI updates for v3.8

  * A new EFI variable filesystem, efivarfs, which addresses the
    shortcomings of the old sysfs EFI variable code.

  * We now switch to a 1:1 mapped pagetable for all virtual EFI
    calls. This is actually a workaround for an ASUS firmware bug
    which expects the physical mappings to still be around at runtime.

  * Because of the above fix Jan's patch to use EFI for the platform
    wall clock can be re-applied (it was originally reverted because
    it broke some ASUS machines).

----------------------------------------------------------------
Andy Whitcroft (5):
      efivarfs: efivarfs_file_read ensure we free data in error paths
      efivarfs: efivarfs_create() ensure we drop our reference on inode on error
      efivarfs: efivarfs_fill_super() fix inode reference counts
      efivarfs: efivarfs_fill_super() ensure we free our temporary name
      efivarfs: efivarfs_fill_super() ensure we clean up correctly on error

Jan Beulich (1):
      x86-64/efi: Use EFI to deal with platform wall clock (again)

Jeremy Kerr (3):
      efi: Handle deletions and size changes in efivarfs_write_file
      efivarfs: Implement exclusive access for {get,set}_variable
      efi: Clarify GUID length calculations

Lee, Chun-Yi (1):
      efi: add efivars kobject to efi sysfs folder

Matt Fleming (11):
      efivarfs: Add documentation for the EFI variable filesystem
      x86, mm: Include the entire kernel memory map in trampoline_pgd
      x86, efi: 1:1 pagetable mapping for virtual EFI calls
      efivarfs: Return an error if we fail to read a variable
      efivarfs: Replace magic number with sizeof(attributes)
      efivarfs: Add unique magic number
      efivarfs: Make 'datasize' unsigned long
      efivarfs: Return a consistent error when efivarfs_get_inode() fails
      efivarfs: Fix return value of efivarfs_file_write()
      efivarfs: Use query_variable_info() to limit kmalloc()
      Merge branch 'next'

Matthew Garrett (1):
      efi: Add support for a UEFI variable filesystem

Xiaoyan Zhang (1):
      x86/kernel: remove tboot 1:1 page table creation code

 Documentation/filesystems/00-INDEX     |   2 +
 Documentation/filesystems/efivarfs.txt |  16 +
 arch/x86/include/asm/efi.h             |  28 +-
 arch/x86/kernel/tboot.c                |  78 +----
 arch/x86/mm/init_64.c                  |   9 +-
 arch/x86/mm/ioremap.c                  | 105 +++++++
 arch/x86/mm/pageattr.c                 |  10 +-
 arch/x86/platform/efi/efi.c            |  29 +-
 arch/x86/platform/efi/efi_64.c         |  15 +
 arch/x86/realmode/init.c               |  17 +-
 drivers/firmware/efivars.c             | 513 ++++++++++++++++++++++++++++++++-
 include/linux/efi.h                    |   9 +-
 include/uapi/linux/magic.h             |   1 +
 init/main.c                            |   8 +-
 14 files changed, 714 insertions(+), 126 deletions(-)
 create mode 100644 Documentation/filesystems/efivarfs.txt

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: [GIT PULL] EFI changes for v3.8
@ 2012-11-13 22:10   ` H. Peter Anvin
  0 siblings, 0 replies; 6+ messages in thread
From: H. Peter Anvin @ 2012-11-13 22:10 UTC (permalink / raw)
  To: Matt Fleming; +Cc: Ingo Molnar, Thomas Gleixner, linux-kernel, linux-efi

On 11/13/2012 02:00 PM, Matt Fleming wrote:
> Hi guys,
> 
> The following changes since commit 5189c2a7c7769ee9d037d76c1a7b8550ccf3481c:
> 
>   x86: efi: Turn off efi_enabled after setup on mixed fw/kernel (2012-10-25 19:09:40 +0100)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-for-3.8
> 
> for you to fetch changes up to fdafa1c8261d4fe2350e63e8dd315bfd58674455:
> 

This is a lambda merge... are the commits in efi-for-3.7 already
upstream?  If so, there is no reason to include them in this pull request.

For now I am going to put efi/next into -tip as core/efi.  Please let me
know if we should put the efi-for-3.7 into an urgent branch.

	-hpa


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

* Re: [GIT PULL] EFI changes for v3.8
@ 2012-11-13 22:10   ` H. Peter Anvin
  0 siblings, 0 replies; 6+ messages in thread
From: H. Peter Anvin @ 2012-11-13 22:10 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Ingo Molnar, Thomas Gleixner,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-efi

On 11/13/2012 02:00 PM, Matt Fleming wrote:
> Hi guys,
> 
> The following changes since commit 5189c2a7c7769ee9d037d76c1a7b8550ccf3481c:
> 
>   x86: efi: Turn off efi_enabled after setup on mixed fw/kernel (2012-10-25 19:09:40 +0100)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-for-3.8
> 
> for you to fetch changes up to fdafa1c8261d4fe2350e63e8dd315bfd58674455:
> 

This is a lambda merge... are the commits in efi-for-3.7 already
upstream?  If so, there is no reason to include them in this pull request.

For now I am going to put efi/next into -tip as core/efi.  Please let me
know if we should put the efi-for-3.7 into an urgent branch.

	-hpa

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

* Re: [GIT PULL] EFI changes for v3.8
@ 2012-11-13 22:20     ` Matt Fleming
  0 siblings, 0 replies; 6+ messages in thread
From: Matt Fleming @ 2012-11-13 22:20 UTC (permalink / raw)
  To: H. Peter Anvin; +Cc: Ingo Molnar, Thomas Gleixner, linux-kernel, linux-efi

On Tue, 2012-11-13 at 14:10 -0800, H. Peter Anvin wrote:
> On 11/13/2012 02:00 PM, Matt Fleming wrote:
> > Hi guys,
> > 
> > The following changes since commit 5189c2a7c7769ee9d037d76c1a7b8550ccf3481c:
> > 
> >   x86: efi: Turn off efi_enabled after setup on mixed fw/kernel (2012-10-25 19:09:40 +0100)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-for-3.8
> > 
> > for you to fetch changes up to fdafa1c8261d4fe2350e63e8dd315bfd58674455:
> > 
> 
> This is a lambda merge... are the commits in efi-for-3.7 already
> upstream?  If so, there is no reason to include them in this pull request.

Yes, they are already upstream.

> For now I am going to put efi/next into -tip as core/efi.  Please let me
> know if we should put the efi-for-3.7 into an urgent branch.

OK, thanks. No need to put efi-for-3.7 into an urgent branch.

-- 
Matt Fleming, Intel Open Source Technology Center


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

* Re: [GIT PULL] EFI changes for v3.8
@ 2012-11-13 22:20     ` Matt Fleming
  0 siblings, 0 replies; 6+ messages in thread
From: Matt Fleming @ 2012-11-13 22:20 UTC (permalink / raw)
  To: H. Peter Anvin
  Cc: Ingo Molnar, Thomas Gleixner,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-efi

On Tue, 2012-11-13 at 14:10 -0800, H. Peter Anvin wrote:
> On 11/13/2012 02:00 PM, Matt Fleming wrote:
> > Hi guys,
> > 
> > The following changes since commit 5189c2a7c7769ee9d037d76c1a7b8550ccf3481c:
> > 
> >   x86: efi: Turn off efi_enabled after setup on mixed fw/kernel (2012-10-25 19:09:40 +0100)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-for-3.8
> > 
> > for you to fetch changes up to fdafa1c8261d4fe2350e63e8dd315bfd58674455:
> > 
> 
> This is a lambda merge... are the commits in efi-for-3.7 already
> upstream?  If so, there is no reason to include them in this pull request.

Yes, they are already upstream.

> For now I am going to put efi/next into -tip as core/efi.  Please let me
> know if we should put the efi-for-3.7 into an urgent branch.

OK, thanks. No need to put efi-for-3.7 into an urgent branch.

-- 
Matt Fleming, Intel Open Source Technology Center

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

end of thread, other threads:[~2012-11-13 22:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-13 22:00 [GIT PULL] EFI changes for v3.8 Matt Fleming
2012-11-13 22:00 ` Matt Fleming
2012-11-13 22:10 ` H. Peter Anvin
2012-11-13 22:10   ` H. Peter Anvin
2012-11-13 22:20   ` Matt Fleming
2012-11-13 22:20     ` Matt Fleming

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.