All of lore.kernel.org
 help / color / mirror / Atom feed
From: Catalin Marinas <catalin.marinas@arm.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Will Deacon <will@kernel.org>,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] arm64 fixes for 5.11-rc4
Date: Fri, 15 Jan 2021 18:15:46 +0000	[thread overview]
Message-ID: <20210115181544.GA8353@gaia> (raw)

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

WARNING: multiple messages have this Message-ID (diff)
From: Catalin Marinas <catalin.marinas@arm.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Will Deacon <will@kernel.org>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: [GIT PULL] arm64 fixes for 5.11-rc4
Date: Fri, 15 Jan 2021 18:15:46 +0000	[thread overview]
Message-ID: <20210115181544.GA8353@gaia> (raw)

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

             reply	other threads:[~2021-01-15 18:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-15 18:15 Catalin Marinas [this message]
2021-01-15 18:15 ` [GIT PULL] arm64 fixes for 5.11-rc4 Catalin Marinas
2021-01-15 21:37 ` pr-tracker-bot
2021-01-15 21:37   ` pr-tracker-bot

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=20210115181544.GA8353@gaia \
    --to=catalin.marinas@arm.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=will@kernel.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.