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-rc3
Date: Fri, 8 Jan 2021 16:33:45 +0000 [thread overview]
Message-ID: <20210108163343.GA18635@gaia> (raw)
Hi Linus,
Please pull the arm64 fixes below. Thanks.
The following changes since commit e71ba9452f0b5b2e8dc8aa5445198cd9214a6a62:
Linux 5.11-rc2 (2021-01-03 15:55:30 -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 83b5bd628f65e6b4d1924b307d6a88a57827bdb0:
arm64: Move PSTATE.TCO setting to separate functions (2021-01-07 11:39:01 +0000)
----------------------------------------------------------------
arm64 fixes:
- Clean-ups following the merging window: remove unused variable,
duplicate includes, superfluous barrier, move some inline asm to
separate functions.
- Disable top-byte-ignore on kernel code addresses with KASAN/MTE
enabled (already done when MTE is disabled).
- Fix ARCH_LOW_ADDRESS_LIMIT definition with CONFIG_ZONE_DMA disabled.
- Compiler/linker flags: link with "-z norelno", discard .eh_frame_hdr
instead of --no-eh-frame-hdr.
----------------------------------------------------------------
Catalin Marinas (2):
arm64: kasan: Set TCR_EL1.TBID1 when KASAN_HW_TAGS is enabled
arm64: Move PSTATE.TCO setting to separate functions
Geert Uytterhoeven (1):
arm64/smp: Remove unused irq variable in arch_show_interrupts()
Nick Desaulniers (1):
arm64: link with -z norelro for LLD or aarch64-elf
Nicolas Saenz Julienne (1):
arm64: mm: Fix ARCH_LOW_ADDRESS_LIMIT when !CONFIG_ZONE_DMA
Peter Collingbourne (2):
arm64: mte: remove an ISB on kernel exit
arm64: vdso: disable .eh_frame_hdr via /DISCARD/ instead of --no-eh-frame-hdr
Tian Tao (1):
arm64: traps: remove duplicate include statement
arch/arm64/Makefile | 10 +++++++---
arch/arm64/include/asm/processor.h | 3 ++-
arch/arm64/include/asm/uaccess.h | 16 +++++++++++++---
arch/arm64/kernel/entry.S | 2 +-
arch/arm64/kernel/smp.c | 1 -
arch/arm64/kernel/traps.c | 1 -
arch/arm64/kernel/vdso/Makefile | 3 +--
arch/arm64/kernel/vdso/vdso.lds.S | 5 +----
arch/arm64/mm/init.c | 2 +-
arch/arm64/mm/proc.S | 2 +-
10 files changed, 27 insertions(+), 18 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-rc3
Date: Fri, 8 Jan 2021 16:33:45 +0000 [thread overview]
Message-ID: <20210108163343.GA18635@gaia> (raw)
Hi Linus,
Please pull the arm64 fixes below. Thanks.
The following changes since commit e71ba9452f0b5b2e8dc8aa5445198cd9214a6a62:
Linux 5.11-rc2 (2021-01-03 15:55:30 -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 83b5bd628f65e6b4d1924b307d6a88a57827bdb0:
arm64: Move PSTATE.TCO setting to separate functions (2021-01-07 11:39:01 +0000)
----------------------------------------------------------------
arm64 fixes:
- Clean-ups following the merging window: remove unused variable,
duplicate includes, superfluous barrier, move some inline asm to
separate functions.
- Disable top-byte-ignore on kernel code addresses with KASAN/MTE
enabled (already done when MTE is disabled).
- Fix ARCH_LOW_ADDRESS_LIMIT definition with CONFIG_ZONE_DMA disabled.
- Compiler/linker flags: link with "-z norelno", discard .eh_frame_hdr
instead of --no-eh-frame-hdr.
----------------------------------------------------------------
Catalin Marinas (2):
arm64: kasan: Set TCR_EL1.TBID1 when KASAN_HW_TAGS is enabled
arm64: Move PSTATE.TCO setting to separate functions
Geert Uytterhoeven (1):
arm64/smp: Remove unused irq variable in arch_show_interrupts()
Nick Desaulniers (1):
arm64: link with -z norelro for LLD or aarch64-elf
Nicolas Saenz Julienne (1):
arm64: mm: Fix ARCH_LOW_ADDRESS_LIMIT when !CONFIG_ZONE_DMA
Peter Collingbourne (2):
arm64: mte: remove an ISB on kernel exit
arm64: vdso: disable .eh_frame_hdr via /DISCARD/ instead of --no-eh-frame-hdr
Tian Tao (1):
arm64: traps: remove duplicate include statement
arch/arm64/Makefile | 10 +++++++---
arch/arm64/include/asm/processor.h | 3 ++-
arch/arm64/include/asm/uaccess.h | 16 +++++++++++++---
arch/arm64/kernel/entry.S | 2 +-
arch/arm64/kernel/smp.c | 1 -
arch/arm64/kernel/traps.c | 1 -
arch/arm64/kernel/vdso/Makefile | 3 +--
arch/arm64/kernel/vdso/vdso.lds.S | 5 +----
arch/arm64/mm/init.c | 2 +-
arch/arm64/mm/proc.S | 2 +-
10 files changed, 27 insertions(+), 18 deletions(-)
--
Catalin
next reply other threads:[~2021-01-08 16:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-08 16:33 Catalin Marinas [this message]
2021-01-08 16:33 ` [GIT PULL] arm64 fixes for 5.11-rc3 Catalin Marinas
2021-01-08 22:16 ` pr-tracker-bot
2021-01-08 22:16 ` 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=20210108163343.GA18635@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.