All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: linux-efi@vger.kernel.org, Ingo Molnar <mingo@kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	"H . Peter Anvin" <hpa@zytor.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	linux-kernel@vger.kernel.org,
	Arvind Yadav <arvind.yadav.cs@gmail.com>,
	Matt Fleming <matt@codeblueprint.co.uk>,
	Stephen Boyd <sboyd@codeaurora.org>,
	Tyler Baicar <tbaicar@codeaurora.org>,
	Vasyl Gomonovych <gomonovych@gmail.com>
Subject: [GIT PULL 0/5] EFI updates for v4.16
Date: Tue,  2 Jan 2018 18:10:37 +0000	[thread overview]
Message-ID: <20180102181042.19074-1-ard.biesheuvel@linaro.org> (raw)

The following changes since commit 30a7acd573899fd8b8ac39236eff6468b195ac7d:

  Linux 4.15-rc6 (2017-12-31 14:47:43 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-next

for you to fetch changes up to 1926a2c1178b6a6622d5ebdc44e1ad0010863824:

  efi: parse ARM error information value (2018-01-02 18:03:05 +0000)

----------------------------------------------------------------
EFI changes for v4.16:
- ignore EFI_MEMORY_XP attributes on ARM if _RP/_WP are set as well
- add support for ARM specific CPER values in decoding routines
- some cosmetic cleanups

----------------------------------------------------------------
Ard Biesheuvel (1):
      arm64: efi: ignore EFI_MEMORY_XP attribute if RP and/or WP are set

Arvind Yadav (1):
      efi/capsule-loader: pr_err() strings should end with newlines

Tyler Baicar (2):
      efi: move ARM CPER code to new file
      efi: parse ARM error information value

Vasyl Gomonovych (1):
      efi: Use PTR_ERR_OR_ZERO()

 arch/arm64/kernel/efi.c               |   4 +-
 drivers/firmware/efi/Kconfig          |   5 +
 drivers/firmware/efi/Makefile         |   1 +
 drivers/firmware/efi/capsule-loader.c |   2 +-
 drivers/firmware/efi/cper-arm.c       | 356 ++++++++++++++++++++++++++++++++++
 drivers/firmware/efi/cper.c           | 122 +-----------
 drivers/firmware/efi/efi.c            |   2 +-
 include/linux/cper.h                  |  48 +++++
 8 files changed, 418 insertions(+), 122 deletions(-)
 create mode 100644 drivers/firmware/efi/cper-arm.c

WARNING: multiple messages have this Message-ID (diff)
From: Ard Biesheuvel <ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
To: linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Ingo Molnar <mingo-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>,
	"H . Peter Anvin" <hpa-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
Cc: Ard Biesheuvel
	<ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Arvind Yadav
	<arvind.yadav.cs-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Matt Fleming
	<matt-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org>,
	Stephen Boyd <sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
	Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
	Vasyl Gomonovych
	<gomonovych-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: [GIT PULL 0/5] EFI updates for v4.16
Date: Tue,  2 Jan 2018 18:10:37 +0000	[thread overview]
Message-ID: <20180102181042.19074-1-ard.biesheuvel@linaro.org> (raw)

The following changes since commit 30a7acd573899fd8b8ac39236eff6468b195ac7d:

  Linux 4.15-rc6 (2017-12-31 14:47:43 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-next

for you to fetch changes up to 1926a2c1178b6a6622d5ebdc44e1ad0010863824:

  efi: parse ARM error information value (2018-01-02 18:03:05 +0000)

----------------------------------------------------------------
EFI changes for v4.16:
- ignore EFI_MEMORY_XP attributes on ARM if _RP/_WP are set as well
- add support for ARM specific CPER values in decoding routines
- some cosmetic cleanups

----------------------------------------------------------------
Ard Biesheuvel (1):
      arm64: efi: ignore EFI_MEMORY_XP attribute if RP and/or WP are set

Arvind Yadav (1):
      efi/capsule-loader: pr_err() strings should end with newlines

Tyler Baicar (2):
      efi: move ARM CPER code to new file
      efi: parse ARM error information value

Vasyl Gomonovych (1):
      efi: Use PTR_ERR_OR_ZERO()

 arch/arm64/kernel/efi.c               |   4 +-
 drivers/firmware/efi/Kconfig          |   5 +
 drivers/firmware/efi/Makefile         |   1 +
 drivers/firmware/efi/capsule-loader.c |   2 +-
 drivers/firmware/efi/cper-arm.c       | 356 ++++++++++++++++++++++++++++++++++
 drivers/firmware/efi/cper.c           | 122 +-----------
 drivers/firmware/efi/efi.c            |   2 +-
 include/linux/cper.h                  |  48 +++++
 8 files changed, 418 insertions(+), 122 deletions(-)
 create mode 100644 drivers/firmware/efi/cper-arm.c

             reply	other threads:[~2018-01-02 18:11 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-02 18:10 Ard Biesheuvel [this message]
2018-01-02 18:10 ` [GIT PULL 0/5] EFI updates for v4.16 Ard Biesheuvel
2018-01-02 18:10 ` [PATCH 1/5] efi/capsule-loader: pr_err() strings should end with newlines Ard Biesheuvel
2018-01-02 18:10   ` Ard Biesheuvel
2018-01-03 16:19   ` [tip:efi/core] efi/capsule-loader: Fix pr_err() string to end with newline tip-bot for Arvind Yadav
2018-01-02 18:10 ` [PATCH 2/5] arm64: efi: ignore EFI_MEMORY_XP attribute if RP and/or WP are set Ard Biesheuvel
2018-01-02 18:10   ` Ard Biesheuvel
2018-01-03 16:19   ` [tip:efi/core] arm64/efi: Ignore " tip-bot for Ard Biesheuvel
2018-01-02 18:10 ` [PATCH 3/5] efi: Use PTR_ERR_OR_ZERO() Ard Biesheuvel
2018-01-03 16:19   ` [tip:efi/core] " tip-bot for Vasyl Gomonovych
2018-01-02 18:10 ` [PATCH 4/5] efi: move ARM CPER code to new file Ard Biesheuvel
2018-01-02 18:10   ` Ard Biesheuvel
2018-01-03 16:20   ` [tip:efi/core] efi: Move " tip-bot for Tyler Baicar
2018-01-02 18:10 ` [PATCH 5/5] efi: parse ARM error information value Ard Biesheuvel
2018-01-03 16:21   ` [tip:efi/core] efi: Parse " tip-bot for Tyler Baicar

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=20180102181042.19074-1-ard.biesheuvel@linaro.org \
    --to=ard.biesheuvel@linaro.org \
    --cc=arvind.yadav.cs@gmail.com \
    --cc=gomonovych@gmail.com \
    --cc=hpa@zytor.com \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matt@codeblueprint.co.uk \
    --cc=mingo@kernel.org \
    --cc=sboyd@codeaurora.org \
    --cc=tbaicar@codeaurora.org \
    --cc=tglx@linutronix.de \
    /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.