All of lore.kernel.org
 help / color / mirror / Atom feed
From: Will Deacon <will@kernel.org>
To: torvalds@linux-foundation.org
Cc: linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, catalin.marinas@arm.com,
	kernel-team@android.com
Subject: [GIT PULL] arm64 fixes for -rc6
Date: Fri, 17 Jul 2020 16:20:21 +0100	[thread overview]
Message-ID: <20200717152020.GA9056@willie-the-truck> (raw)

Hi Linus,

Please pull this batch of arm64 fixes for -rc6. Although the diffstat is
a bit larger than we'd usually have at this stage, a decent amount of it
is the addition of comments describing our syscall tracing behaviour, and
also a sweep across all the modular arm64 PMU drivers to make them rebust
against unloading and unbinding.

Summary is in the tag. Although there are a couple of minor things kicking
around at the moment (CPU errata and module PLTs for very large modules),
I'm not expecting any significant changes now for us in 5.8

Cheers,

Will

--->8

The following changes since commit 5679b28142193a62f6af93249c0477be9f0c669b:

  arm64/alternatives: don't patch up internal branches (2020-07-09 14:57:59 +0100)

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

  drivers/perf: Prevent forced unbinding of PMU drivers (2020-07-17 10:51:44 +0100)

----------------------------------------------------------------
arm64 fixes for -rc6

- Fix kernel text addresses for relocatable images booting using EFI
  and with KASLR disabled so that they match the vmlinux ELF binary.

- Fix unloading and unbinding of PMU driver modules.

- Fix generic mmiowb() when writeX() is called from preemptible context
  (reported by the riscv folks).

- Fix ptrace hardware single-step interactions with signal handlers,
  system calls and reverse debugging.

- Fix reporting of 64-bit x0 register for 32-bit tasks via 'perf_regs'.

- Add comments describing syscall entry/exit tracing ABI.

----------------------------------------------------------------
Qi Liu (2):
      drivers/perf: Fix kernel panic when rmmod PMU modules during perf sampling
      drivers/perf: Prevent forced unbinding of PMU drivers

Will Deacon (9):
      efi/libstub/arm64: Retain 2MB kernel Image alignment if !KASLR
      arm64: ptrace: Consistently use pseudo-singlestep exceptions
      arm64: ptrace: Override SPSR.SS when single-stepping is enabled
      arm64: compat: Ensure upper 32 bits of x0 are zero on syscall return
      arm64: ptrace: Add a comment describing our syscall entry/exit trap ABI
      arm64: syscall: Expand the comment about ptrace and syscall(-1)
      arm64: ptrace: Use NO_SYSCALL instead of -1 in syscall_trace_enter()
      arm64: Use test_tsk_thread_flag() for checking TIF_SINGLESTEP
      asm-generic/mmiowb: Allow mmiowb_set_pending() when preemptible()

 arch/arm64/include/asm/debug-monitors.h        |  2 ++
 arch/arm64/include/asm/syscall.h               | 12 ++++++-
 arch/arm64/include/asm/thread_info.h           |  1 +
 arch/arm64/kernel/debug-monitors.c             | 24 +++++++++----
 arch/arm64/kernel/ptrace.c                     | 49 +++++++++++++++++++-------
 arch/arm64/kernel/signal.c                     | 11 ++----
 arch/arm64/kernel/syscall.c                    | 21 +++++++++--
 drivers/firmware/efi/libstub/arm64-stub.c      | 25 +++++++------
 drivers/firmware/efi/libstub/efi-stub-helper.c |  2 +-
 drivers/perf/arm-cci.c                         |  1 +
 drivers/perf/arm-ccn.c                         |  1 +
 drivers/perf/arm_dsu_pmu.c                     |  1 +
 drivers/perf/arm_smmuv3_pmu.c                  |  2 ++
 drivers/perf/arm_spe_pmu.c                     |  1 +
 drivers/perf/fsl_imx8_ddr_perf.c               |  2 ++
 drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c  |  2 ++
 drivers/perf/hisilicon/hisi_uncore_hha_pmu.c   |  2 ++
 drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c   |  2 ++
 drivers/perf/qcom_l2_pmu.c                     |  1 +
 drivers/perf/qcom_l3_pmu.c                     |  1 +
 drivers/perf/thunderx2_pmu.c                   |  1 +
 drivers/perf/xgene_pmu.c                       |  1 +
 include/asm-generic/mmiowb.h                   |  6 ++--
 23 files changed, 127 insertions(+), 44 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, kernel-team@android.com,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] arm64 fixes for -rc6
Date: Fri, 17 Jul 2020 16:20:21 +0100	[thread overview]
Message-ID: <20200717152020.GA9056@willie-the-truck> (raw)

Hi Linus,

Please pull this batch of arm64 fixes for -rc6. Although the diffstat is
a bit larger than we'd usually have at this stage, a decent amount of it
is the addition of comments describing our syscall tracing behaviour, and
also a sweep across all the modular arm64 PMU drivers to make them rebust
against unloading and unbinding.

Summary is in the tag. Although there are a couple of minor things kicking
around at the moment (CPU errata and module PLTs for very large modules),
I'm not expecting any significant changes now for us in 5.8

Cheers,

Will

--->8

The following changes since commit 5679b28142193a62f6af93249c0477be9f0c669b:

  arm64/alternatives: don't patch up internal branches (2020-07-09 14:57:59 +0100)

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

  drivers/perf: Prevent forced unbinding of PMU drivers (2020-07-17 10:51:44 +0100)

----------------------------------------------------------------
arm64 fixes for -rc6

- Fix kernel text addresses for relocatable images booting using EFI
  and with KASLR disabled so that they match the vmlinux ELF binary.

- Fix unloading and unbinding of PMU driver modules.

- Fix generic mmiowb() when writeX() is called from preemptible context
  (reported by the riscv folks).

- Fix ptrace hardware single-step interactions with signal handlers,
  system calls and reverse debugging.

- Fix reporting of 64-bit x0 register for 32-bit tasks via 'perf_regs'.

- Add comments describing syscall entry/exit tracing ABI.

----------------------------------------------------------------
Qi Liu (2):
      drivers/perf: Fix kernel panic when rmmod PMU modules during perf sampling
      drivers/perf: Prevent forced unbinding of PMU drivers

Will Deacon (9):
      efi/libstub/arm64: Retain 2MB kernel Image alignment if !KASLR
      arm64: ptrace: Consistently use pseudo-singlestep exceptions
      arm64: ptrace: Override SPSR.SS when single-stepping is enabled
      arm64: compat: Ensure upper 32 bits of x0 are zero on syscall return
      arm64: ptrace: Add a comment describing our syscall entry/exit trap ABI
      arm64: syscall: Expand the comment about ptrace and syscall(-1)
      arm64: ptrace: Use NO_SYSCALL instead of -1 in syscall_trace_enter()
      arm64: Use test_tsk_thread_flag() for checking TIF_SINGLESTEP
      asm-generic/mmiowb: Allow mmiowb_set_pending() when preemptible()

 arch/arm64/include/asm/debug-monitors.h        |  2 ++
 arch/arm64/include/asm/syscall.h               | 12 ++++++-
 arch/arm64/include/asm/thread_info.h           |  1 +
 arch/arm64/kernel/debug-monitors.c             | 24 +++++++++----
 arch/arm64/kernel/ptrace.c                     | 49 +++++++++++++++++++-------
 arch/arm64/kernel/signal.c                     | 11 ++----
 arch/arm64/kernel/syscall.c                    | 21 +++++++++--
 drivers/firmware/efi/libstub/arm64-stub.c      | 25 +++++++------
 drivers/firmware/efi/libstub/efi-stub-helper.c |  2 +-
 drivers/perf/arm-cci.c                         |  1 +
 drivers/perf/arm-ccn.c                         |  1 +
 drivers/perf/arm_dsu_pmu.c                     |  1 +
 drivers/perf/arm_smmuv3_pmu.c                  |  2 ++
 drivers/perf/arm_spe_pmu.c                     |  1 +
 drivers/perf/fsl_imx8_ddr_perf.c               |  2 ++
 drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c  |  2 ++
 drivers/perf/hisilicon/hisi_uncore_hha_pmu.c   |  2 ++
 drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c   |  2 ++
 drivers/perf/qcom_l2_pmu.c                     |  1 +
 drivers/perf/qcom_l3_pmu.c                     |  1 +
 drivers/perf/thunderx2_pmu.c                   |  1 +
 drivers/perf/xgene_pmu.c                       |  1 +
 include/asm-generic/mmiowb.h                   |  6 ++--
 23 files changed, 127 insertions(+), 44 deletions(-)

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

             reply	other threads:[~2020-07-17 15:20 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-17 15:20 Will Deacon [this message]
2020-07-17 15:20 ` [GIT PULL] arm64 fixes for -rc6 Will Deacon
2020-07-17 23:45 ` pr-tracker-bot
2020-07-17 23:45   ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2024-02-23 10:25 Will Deacon
2024-02-23 10:25 ` Will Deacon
2024-02-23 18:44 ` pr-tracker-bot
2024-02-23 18:44   ` pr-tracker-bot
2023-06-08 20:51 Will Deacon
2023-06-08 20:51 ` Will Deacon
2023-06-08 21:49 ` pr-tracker-bot
2023-06-08 21:49   ` pr-tracker-bot
2021-12-15 11:19 Will Deacon
2021-12-15 11:19 ` Will Deacon
2021-12-15 16:00 ` Catalin Marinas
2021-12-15 16:00   ` Catalin Marinas
2021-12-15 18:49   ` Linus Torvalds
2021-12-15 18:49     ` Linus Torvalds
2020-11-27 11:40 Will Deacon
2020-11-27 11:40 ` Will Deacon
2020-11-27 19:19 ` pr-tracker-bot
2020-11-27 19:19   ` pr-tracker-bot
2019-11-01 14:32 [GIT PULL] arm64: Fixes " Will Deacon
2019-11-01 14:32 ` Will Deacon
2019-11-01 17:10 ` pr-tracker-bot
2019-11-01 17:10   ` pr-tracker-bot
2019-08-24 12:12 Will Deacon
2019-08-24 12:12 ` Will Deacon
2019-08-24 12:12 ` Will Deacon
2019-08-24 18:45 ` pr-tracker-bot
2019-08-24 18:45   ` pr-tracker-bot
2019-08-24 18:45   ` pr-tracker-bot
2019-06-20 16:59 [GIT PULL] arm64: fixes " Will Deacon
2019-06-20 16:59 ` Will Deacon
2019-06-20 19:10 ` pr-tracker-bot
2019-06-20 19:10   ` pr-tracker-bot
2019-02-08 17:35 Will Deacon
2019-02-08 17:35 ` Will Deacon
2019-02-09  0:40 ` pr-tracker-bot
2019-02-09  0:40   ` pr-tracker-bot
2017-04-07 16:02 Will Deacon
2017-04-07 16:02 ` Will Deacon
2017-04-11 19:12 ` Jon Masters
2017-04-11 19:12   ` Jon Masters
2017-04-12  9:14   ` Will Deacon
2017-04-12  9:14     ` Will Deacon
2017-04-12 10:18     ` Punit Agrawal
2017-04-12 10:18       ` Punit Agrawal
2015-10-15 13:38 Will Deacon
2015-10-15 13:38 ` Will Deacon
2015-01-23 16:44 Will Deacon
2015-01-23 16:44 ` 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=20200717152020.GA9056@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.