All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] arm64 fixes for 5.11-rc4
@ 2021-01-15 18:15 ` Catalin Marinas
  0 siblings, 0 replies; 4+ messages in thread
From: Catalin Marinas @ 2021-01-15 18:15 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Will Deacon, linux-arm-kernel, linux-kernel

Hi Linus,

Please pull the arm64 fixes below. Thanks.

The following changes since commit 7c53f6b671f4aba70ff15e1b05148b10d58c2837:

  Linux 5.11-rc3 (2021-01-10 14:34:50 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 3a57a643a851dbb1c4a1819394ca009e3bfa4813:

  arm64: selftests: Fix spelling of 'Mismatch' (2021-01-15 10:05:27 +0000)

----------------------------------------------------------------
arm64 fixes:

- Set the minimum GCC version to 5.1 for arm64 due to earlier compiler
  bugs.

- Make atomic helpers __always_inline to avoid a section mismatch when
  compiling with clang.

- Fix the CMA and crashkernel reservations to use ZONE_DMA (remove the
  arm64_dma32_phys_limit variable, no longer needed with a dynamic
  ZONE_DMA sizing in 5.11).

- Remove redundant IRQ flag tracing that was leaving lockdep
  inconsistent with the hardware state.

- Revert perf events based hard lockup detector that was causing
  smp_processor_id() to be called in preemptible context.

- Some trivial cleanups - spelling fix, renaming S_FRAME_SIZE to
  PT_REGS_SIZE, function prototypes added.

----------------------------------------------------------------
Arnd Bergmann (1):
      arm64: make atomic helpers __always_inline

Catalin Marinas (1):
      arm64: Remove arm64_dma32_phys_limit and its uses

Jianlin Lv (1):
      arm64: rename S_FRAME_SIZE to PT_REGS_SIZE

Mark Brown (1):
      arm64: selftests: Fix spelling of 'Mismatch'

Mark Rutland (2):
      arm64: entry: remove redundant IRQ flag tracing
      arm64: syscall: include prototype for EL0 SVC functions

Will Deacon (2):
      Revert "arm64: Enable perf events based hard lockup detector"
      compiler.h: Raise minimum version of GCC to 5.1 for arm64

 arch/arm64/Kconfig                             |  2 --
 arch/arm64/include/asm/atomic.h                | 10 +++----
 arch/arm64/include/asm/processor.h             |  3 +-
 arch/arm64/kernel/asm-offsets.c                |  2 +-
 arch/arm64/kernel/entry-ftrace.S               | 12 ++++----
 arch/arm64/kernel/entry.S                      | 14 ++++-----
 arch/arm64/kernel/perf_event.c                 | 41 ++------------------------
 arch/arm64/kernel/probes/kprobes_trampoline.S  |  6 ++--
 arch/arm64/kernel/signal.c                     |  7 -----
 arch/arm64/kernel/syscall.c                    | 10 ++-----
 arch/arm64/mm/init.c                           | 33 +++++++++++----------
 drivers/perf/arm_pmu.c                         |  5 ----
 include/asm-generic/bitops/atomic.h            |  6 ++--
 include/linux/compiler-gcc.h                   |  6 ++++
 include/linux/perf/arm_pmu.h                   |  2 --
 tools/testing/selftests/arm64/fp/fpsimd-test.S |  2 +-
 tools/testing/selftests/arm64/fp/sve-test.S    |  2 +-
 17 files changed, 56 insertions(+), 107 deletions(-)

-- 
Catalin

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

* [GIT PULL] arm64 fixes for 5.11-rc4
@ 2021-01-15 18:15 ` Catalin Marinas
  0 siblings, 0 replies; 4+ messages in thread
From: Catalin Marinas @ 2021-01-15 18:15 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Will Deacon, linux-kernel, linux-arm-kernel

Hi Linus,

Please pull the arm64 fixes below. Thanks.

The following changes since commit 7c53f6b671f4aba70ff15e1b05148b10d58c2837:

  Linux 5.11-rc3 (2021-01-10 14:34:50 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 3a57a643a851dbb1c4a1819394ca009e3bfa4813:

  arm64: selftests: Fix spelling of 'Mismatch' (2021-01-15 10:05:27 +0000)

----------------------------------------------------------------
arm64 fixes:

- Set the minimum GCC version to 5.1 for arm64 due to earlier compiler
  bugs.

- Make atomic helpers __always_inline to avoid a section mismatch when
  compiling with clang.

- Fix the CMA and crashkernel reservations to use ZONE_DMA (remove the
  arm64_dma32_phys_limit variable, no longer needed with a dynamic
  ZONE_DMA sizing in 5.11).

- Remove redundant IRQ flag tracing that was leaving lockdep
  inconsistent with the hardware state.

- Revert perf events based hard lockup detector that was causing
  smp_processor_id() to be called in preemptible context.

- Some trivial cleanups - spelling fix, renaming S_FRAME_SIZE to
  PT_REGS_SIZE, function prototypes added.

----------------------------------------------------------------
Arnd Bergmann (1):
      arm64: make atomic helpers __always_inline

Catalin Marinas (1):
      arm64: Remove arm64_dma32_phys_limit and its uses

Jianlin Lv (1):
      arm64: rename S_FRAME_SIZE to PT_REGS_SIZE

Mark Brown (1):
      arm64: selftests: Fix spelling of 'Mismatch'

Mark Rutland (2):
      arm64: entry: remove redundant IRQ flag tracing
      arm64: syscall: include prototype for EL0 SVC functions

Will Deacon (2):
      Revert "arm64: Enable perf events based hard lockup detector"
      compiler.h: Raise minimum version of GCC to 5.1 for arm64

 arch/arm64/Kconfig                             |  2 --
 arch/arm64/include/asm/atomic.h                | 10 +++----
 arch/arm64/include/asm/processor.h             |  3 +-
 arch/arm64/kernel/asm-offsets.c                |  2 +-
 arch/arm64/kernel/entry-ftrace.S               | 12 ++++----
 arch/arm64/kernel/entry.S                      | 14 ++++-----
 arch/arm64/kernel/perf_event.c                 | 41 ++------------------------
 arch/arm64/kernel/probes/kprobes_trampoline.S  |  6 ++--
 arch/arm64/kernel/signal.c                     |  7 -----
 arch/arm64/kernel/syscall.c                    | 10 ++-----
 arch/arm64/mm/init.c                           | 33 +++++++++++----------
 drivers/perf/arm_pmu.c                         |  5 ----
 include/asm-generic/bitops/atomic.h            |  6 ++--
 include/linux/compiler-gcc.h                   |  6 ++++
 include/linux/perf/arm_pmu.h                   |  2 --
 tools/testing/selftests/arm64/fp/fpsimd-test.S |  2 +-
 tools/testing/selftests/arm64/fp/sve-test.S    |  2 +-
 17 files changed, 56 insertions(+), 107 deletions(-)

-- 
Catalin

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

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

* Re: [GIT PULL] arm64 fixes for 5.11-rc4
  2021-01-15 18:15 ` Catalin Marinas
@ 2021-01-15 21:37   ` pr-tracker-bot
  -1 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-01-15 21:37 UTC (permalink / raw)
  To: Catalin Marinas
  Cc: Linus Torvalds, Will Deacon, linux-arm-kernel, linux-kernel

The pull request you sent on Fri, 15 Jan 2021 18:15:46 +0000:

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

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/82821be8a2e14bdf359be577400be88b2f1eb8a7

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* Re: [GIT PULL] arm64 fixes for 5.11-rc4
@ 2021-01-15 21:37   ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-01-15 21:37 UTC (permalink / raw)
  To: Catalin Marinas
  Cc: Will Deacon, Linus Torvalds, linux-kernel, linux-arm-kernel

The pull request you sent on Fri, 15 Jan 2021 18:15:46 +0000:

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

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/82821be8a2e14bdf359be577400be88b2f1eb8a7

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

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

end of thread, other threads:[~2021-01-15 21:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-15 18:15 [GIT PULL] arm64 fixes for 5.11-rc4 Catalin Marinas
2021-01-15 18:15 ` Catalin Marinas
2021-01-15 21:37 ` pr-tracker-bot
2021-01-15 21:37   ` pr-tracker-bot

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.