All of lore.kernel.org
 help / color / mirror / Atom feed
From: Will Deacon <will@kernel.org>
To: torvalds@linux-foundation.org
Cc: catalin.marinas@arm.com, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, kernel-team@android.com
Subject: [GIT PULL] arm64 fixes for -rc2
Date: Fri, 8 Apr 2022 17:29:00 +0100	[thread overview]
Message-ID: <20220408162900.GC28108@willie-the-truck> (raw)

Hi Linus,

Please pull these arm64 fixes for -rc2. The usual summary is in the tag,
but the two main things to note are:

  (1) The bulk of the diffstat is us reverting a horrible bodge we had
      in place to ease the merging of maple tree during the merge window
      (which turned out not to be needed, but anyway)

  (2) The TLB invalidation fix is done in core code, as suggested by
      (and Acked-by) Peter.

Cheers,

Will

--->8

The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17:

  Linux 5.18-rc1 (2022-04-03 14:08:21 -0700)

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 d02b4dd84e1a90f7f1444d027c0289bf355b0d5a:

  perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant (2022-04-08 14:17:57 +0100)

----------------------------------------------------------------
arm64 fixes for -rc2

- Revert temporary bodge in MTE coredumping to ease maple tree integration

- Fix stack frame size warning reported with 64k pages

- Fix stop_machine() race with instruction text patching

- Ensure alternatives patching routines are not instrumented

- Enable Spectre-BHB mitigation for Cortex-A78AE

- Fix hugetlb TLB invalidation when contiguous hint is used

- Minor perf driver fixes

- Fix some typos

----------------------------------------------------------------
Borislav Petkov (1):
      perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant

Catalin Marinas (1):
      arm64: mte: Fix the stack frame size warning in mte_dump_tag_range()

Chanho Park (1):
      arm64: Add part number for Arm Cortex-A78AE

Geert Uytterhoeven (1):
      perf: MARVELL_CN10K_DDR_PMU should depend on ARCH_THUNDER

Guo Ren (1):
      arm64: patch_text: Fixup last cpu should be master

Joey Gouly (1):
      arm64: alternatives: mark patch_alternative() as `noinstr`

Julia Lawall (1):
      arm64: fix typos in comments

Phil Auld (1):
      arch/arm64: Fix topology initialization for core scheduling

Steve Capper (1):
      tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry

Will Deacon (1):
      Revert "arm64: Change elfcore for_each_mte_vma() to use VMA iterator"

Xiaomeng Tong (1):
      perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator

Zhiyuan Dai (1):
      arm64: Fix comments in macro __init_el2_gicv3

 arch/arm64/include/asm/cputype.h   |  2 ++
 arch/arm64/include/asm/el2_setup.h |  2 +-
 arch/arm64/kernel/alternative.c    |  6 ++---
 arch/arm64/kernel/elfcore.c        | 47 +++++++++++++++++++++-----------------
 arch/arm64/kernel/hw_breakpoint.c  |  2 +-
 arch/arm64/kernel/module-plts.c    |  2 +-
 arch/arm64/kernel/patching.c       |  4 ++--
 arch/arm64/kernel/proton-pack.c    |  1 +
 arch/arm64/kernel/smp.c            |  2 +-
 arch/arm64/kernel/suspend.c        |  2 +-
 arch/arm64/mm/init.c               |  4 ++--
 drivers/perf/Kconfig               |  2 +-
 drivers/perf/fsl_imx8_ddr_perf.c   |  2 +-
 drivers/perf/qcom_l2_pmu.c         |  6 ++---
 include/asm-generic/tlb.h          | 10 +++++---
 15 files changed, 53 insertions(+), 41 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Will Deacon <will@kernel.org>
To: torvalds@linux-foundation.org
Cc: catalin.marinas@arm.com, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, kernel-team@android.com
Subject: [GIT PULL] arm64 fixes for -rc2
Date: Fri, 8 Apr 2022 17:29:00 +0100	[thread overview]
Message-ID: <20220408162900.GC28108@willie-the-truck> (raw)

Hi Linus,

Please pull these arm64 fixes for -rc2. The usual summary is in the tag,
but the two main things to note are:

  (1) The bulk of the diffstat is us reverting a horrible bodge we had
      in place to ease the merging of maple tree during the merge window
      (which turned out not to be needed, but anyway)

  (2) The TLB invalidation fix is done in core code, as suggested by
      (and Acked-by) Peter.

Cheers,

Will

--->8

The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17:

  Linux 5.18-rc1 (2022-04-03 14:08:21 -0700)

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 d02b4dd84e1a90f7f1444d027c0289bf355b0d5a:

  perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant (2022-04-08 14:17:57 +0100)

----------------------------------------------------------------
arm64 fixes for -rc2

- Revert temporary bodge in MTE coredumping to ease maple tree integration

- Fix stack frame size warning reported with 64k pages

- Fix stop_machine() race with instruction text patching

- Ensure alternatives patching routines are not instrumented

- Enable Spectre-BHB mitigation for Cortex-A78AE

- Fix hugetlb TLB invalidation when contiguous hint is used

- Minor perf driver fixes

- Fix some typos

----------------------------------------------------------------
Borislav Petkov (1):
      perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant

Catalin Marinas (1):
      arm64: mte: Fix the stack frame size warning in mte_dump_tag_range()

Chanho Park (1):
      arm64: Add part number for Arm Cortex-A78AE

Geert Uytterhoeven (1):
      perf: MARVELL_CN10K_DDR_PMU should depend on ARCH_THUNDER

Guo Ren (1):
      arm64: patch_text: Fixup last cpu should be master

Joey Gouly (1):
      arm64: alternatives: mark patch_alternative() as `noinstr`

Julia Lawall (1):
      arm64: fix typos in comments

Phil Auld (1):
      arch/arm64: Fix topology initialization for core scheduling

Steve Capper (1):
      tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry

Will Deacon (1):
      Revert "arm64: Change elfcore for_each_mte_vma() to use VMA iterator"

Xiaomeng Tong (1):
      perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator

Zhiyuan Dai (1):
      arm64: Fix comments in macro __init_el2_gicv3

 arch/arm64/include/asm/cputype.h   |  2 ++
 arch/arm64/include/asm/el2_setup.h |  2 +-
 arch/arm64/kernel/alternative.c    |  6 ++---
 arch/arm64/kernel/elfcore.c        | 47 +++++++++++++++++++++-----------------
 arch/arm64/kernel/hw_breakpoint.c  |  2 +-
 arch/arm64/kernel/module-plts.c    |  2 +-
 arch/arm64/kernel/patching.c       |  4 ++--
 arch/arm64/kernel/proton-pack.c    |  1 +
 arch/arm64/kernel/smp.c            |  2 +-
 arch/arm64/kernel/suspend.c        |  2 +-
 arch/arm64/mm/init.c               |  4 ++--
 drivers/perf/Kconfig               |  2 +-
 drivers/perf/fsl_imx8_ddr_perf.c   |  2 +-
 drivers/perf/qcom_l2_pmu.c         |  6 ++---
 include/asm-generic/tlb.h          | 10 +++++---
 15 files changed, 53 insertions(+), 41 deletions(-)

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

             reply	other threads:[~2022-04-08 16:29 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-08 16:29 Will Deacon [this message]
2022-04-08 16:29 ` [GIT PULL] arm64 fixes for -rc2 Will Deacon
2022-04-08 17:46 ` pr-tracker-bot
2022-04-08 17:46   ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2021-07-16 14:53 Will Deacon
2021-07-16 14:53 ` Will Deacon
2021-07-17  2:12 ` pr-tracker-bot
2021-07-17  2:12   ` pr-tracker-bot
2020-10-30 17:05 Will Deacon
2020-10-30 17:05 ` Will Deacon
2020-10-30 20:29 ` pr-tracker-bot
2020-10-30 20:29   ` pr-tracker-bot
2020-06-19 12:43 Will Deacon
2020-06-19 12:43 ` Will Deacon
2020-06-19 19:30 ` pr-tracker-bot
2020-06-19 19:30   ` pr-tracker-bot
2020-02-13 17:10 Will Deacon
2020-02-13 17:10 ` Will Deacon
2020-02-13 22:40 ` pr-tracker-bot
2020-02-13 22:40   ` pr-tracker-bot
2019-07-26 13:12 [GIT PULL] arm64: " Will Deacon
2019-07-26 13:12 ` Will Deacon
2019-07-26 18:25 ` pr-tracker-bot
2019-07-26 18:25   ` pr-tracker-bot
2019-01-11 18:20 Will Deacon
2019-01-11 18:20 ` Will Deacon
2019-01-11 20:40 ` pr-tracker-bot
2019-01-11 20:40   ` pr-tracker-bot
2018-08-31 16:12 Will Deacon
2018-08-31 16:12 ` Will Deacon
2017-12-01 18:23 Will Deacon
2017-12-01 18:23 ` Will Deacon
2016-10-20 17:14 Will Deacon
2016-10-20 17:14 ` Will Deacon
2016-06-03 15:37 Will Deacon
2016-06-03 15:37 ` Will Deacon
2016-04-01 15:15 Will Deacon
2016-04-01 15:15 ` Will Deacon
2016-01-27 18:45 Will Deacon
2016-01-27 18:45 ` Will Deacon
2015-09-17 14:04 Will Deacon
2015-09-17 14:04 ` 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=20220408162900.GC28108@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=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 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.