linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Will Deacon <will@kernel.org>
To: torvalds@linux-foundation.org
Cc: Catalin Marinas <catalin.marinas@arm.com>,
	kernel-team@android.com,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux ARM Kernel Mailing List
	<linux-arm-kernel@lists.infradead.org>,
	maz@kernel.org
Subject: [GIT PULL] arm64: Fixes for -rc1
Date: Fri, 26 Feb 2021 11:09:16 +0000	[thread overview]
Message-ID: <20210226110916.GA14247@willie-the-truck> (raw)

Hi Linus,

Please pull these arm64 fixes for -rc1. The big one is a fix for the VHE
enabling path during early boot, where the code enabling the MMU wasn't
necessarily in the identity map of the new page-tables, resulting in a
consistent crash with 64k pages. In fixing that, we noticed some missing
barriers too, so we added those for the sake of architectural compliance.

Other than that, just the usual merge window trickle. There'll be more
to come, too.

Cheers,

Will

--->8

The following changes since commit 1ffa9763828cf73a4d4eaa04c29a4a89fb0708c7:

  Merge branch 'for-next/vdso' into for-next/core (2021-02-12 15:17:42 +0000)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git tags/arm64-fixes

for you to fetch changes up to 3c02600144bdb0a1280a9090d3a7e37e2f9fdcc8:

  arm64: stacktrace: Report when we reach the end of the stack (2021-02-25 10:34:51 +0000)

----------------------------------------------------------------
arm64 fixes for -rc1

- Fix lockdep false alarm on resume-from-cpuidle path

- Fix memory leak in kexec_file

- Fix module linker script to work with GDB

- Fix error code when trying to use uprobes with AArch32 instructions

- Fix late VHE enabling with 64k pages

- Add missing ISBs after TLB invalidation

- Fix seccomp when tracing syscall -1

- Fix stacktrace return code at end of stack

- Fix inconsistent whitespace for pointer return values

- Fix compiler warnings when building with W=1

----------------------------------------------------------------
He Zhe (1):
      arm64: uprobe: Return EOPNOTSUPP for AARCH32 instruction probing

Joey Gouly (1):
      KVM: arm64: make the hyp vector table entries local

Marc Zyngier (3):
      arm64: VHE: Enable EL2 MMU from the idmap
      arm64: Add missing ISB after invalidating TLB in __primary_switch
      arm64: Add missing ISB after invalidating TLB in enter_vhe

Mark Brown (1):
      arm64: stacktrace: Report when we reach the end of the stack

Pavel Tatashin (1):
      kexec: move machine_kexec_post_load() to public interface

Shaoying Xu (1):
      arm64 module: set plt* section addresses to 0x0

Timothy E Baldwin (1):
      arm64: ptrace: Fix seccomp of traced syscall -1 (NO_SYSCALL)

Will Deacon (1):
      arm64: spectre: Prevent lockdep splat on v4 mitigation enable path

Zhiyuan Dai (1):
      arm64/mm: Fixed some coding style issues

qiuguorui1 (1):
      arm64: kexec_file: fix memory leakage in create_dtb() when fdt_open_into() fails

 arch/arm64/include/asm/module.lds.h    |  6 ++---
 arch/arm64/kernel/head.S               |  1 +
 arch/arm64/kernel/hyp-stub.S           | 40 +++++++++++++++++++++++-----------
 arch/arm64/kernel/machine_kexec_file.c |  4 +++-
 arch/arm64/kernel/probes/uprobes.c     |  2 +-
 arch/arm64/kernel/ptrace.c             |  2 +-
 arch/arm64/kernel/stacktrace.c         |  2 +-
 arch/arm64/kernel/suspend.c            |  2 +-
 arch/arm64/kvm/hyp/hyp-entry.S         |  2 +-
 arch/arm64/mm/mmu.c                    |  6 ++---
 include/linux/kexec.h                  |  2 ++
 kernel/kexec_internal.h                |  2 --
 12 files changed, 44 insertions(+), 27 deletions(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2021-02-26 11:10 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-26 11:09 Will Deacon [this message]
2021-02-26 18:31 ` [GIT PULL] arm64: Fixes for -rc1 pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2024-01-19 16:05 [GIT PULL] arm64 fixes " Will Deacon
2024-01-19 16:34 ` Rob Herring
2024-01-19 16:58   ` Rob Herring
2024-01-19 22:50 ` pr-tracker-bot
2023-09-08 15:30 Will Deacon
2023-09-08 20:00 ` pr-tracker-bot
2023-05-04 14:22 Will Deacon
2023-05-04 19:49 ` pr-tracker-bot
2022-12-16 15:51 Will Deacon
2022-12-16 19:50 ` pr-tracker-bot
2021-11-10 18:52 Will Deacon
2021-11-10 20:09 ` pr-tracker-bot
2019-09-20 13:37 [GIT PULL] arm64: Fixes " Will Deacon
2019-09-20 19:10 ` pr-tracker-bot
2019-01-04 18:24 [GIT PULL] arm64: fixes " Will Deacon
2019-01-05 20:20 ` pr-tracker-bot
2017-03-01  4:51 [GIT PULL] arm64 " Will Deacon
2016-08-05 15:48 [GIT PULL] arm64: " Will Deacon
2014-12-16 17:50 Will Deacon

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=20210226110916.GA14247@willie-the-truck \
    --to=will@kernel.org \
    --cc=catalin.marinas@arm.com \
    --cc=kernel-team@android.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maz@kernel.org \
    --cc=torvalds@linux-foundation.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 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).