* [GIT PULL] RISC-V Fixes for 6.15-rc6
@ 2025-07-04 15:43 Palmer Dabbelt
2025-07-04 17:36 ` pr-tracker-bot
0 siblings, 1 reply; 4+ messages in thread
From: Palmer Dabbelt @ 2025-07-04 15:43 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-riscv, linux-kernel
The following changes since commit d0b3b7b22dfa1f4b515fd3a295b3fd958f9e81af:
Linux 6.16-rc4 (2025-06-29 13:09:04 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-6.16-rc5
for you to fetch changes up to 5903a7452e642f1475f274373633522db168b60b:
Merge tag 'riscv-fixes-6.16-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux into fixes (2025-07-02 10:51:00 -0700)
----------------------------------------------------------------
RISC-V Fixes for 6.15-rc6
* kCFI is restricted to clang-17 or newer, as earlier versions have
known bugs.
* sbi_hsm_hart_start is now staticly allocated, to avoid tripping up the
SBI HSM page mapping on sparse systems.
----------------------------------------------------------------
Nathan Chancellor (1):
riscv: Require clang-17 or newer for kCFI
Palmer Dabbelt (1):
Merge tag 'riscv-fixes-6.16-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux into fixes
Vivian Wang (1):
riscv: cpu_ops_sbi: Use static array for boot_data
arch/riscv/Kconfig | 3 ++-
arch/riscv/kernel/cpu_ops_sbi.c | 6 +++---
2 files changed, 5 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] RISC-V Fixes for 6.15-rc6
2025-07-04 15:43 [GIT PULL] RISC-V Fixes for 6.15-rc6 Palmer Dabbelt
@ 2025-07-04 17:36 ` pr-tracker-bot
0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2025-07-04 17:36 UTC (permalink / raw)
To: Palmer Dabbelt; +Cc: Linus Torvalds, linux-riscv, linux-kernel
The pull request you sent on Fri, 04 Jul 2025 08:43:50 -0700 (PDT):
> git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-6.16-rc5
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/c435a4f487e8c6a3b23dafbda87d971d4fd14e0b
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] RISC-V Fixes for 6.15-rc6
2025-05-09 16:11 Palmer Dabbelt
@ 2025-05-09 18:30 ` pr-tracker-bot
0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2025-05-09 18:30 UTC (permalink / raw)
To: Palmer Dabbelt; +Cc: Linus Torvalds, linux-riscv, linux-kernel
The pull request you sent on Fri, 09 May 2025 09:11:24 -0700 (PDT):
> git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-6.15-rc6
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/3013c33dcbd9b3107eef8facce0e4c69f3b7f780
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
* [GIT PULL] RISC-V Fixes for 6.15-rc6
@ 2025-05-09 16:11 Palmer Dabbelt
2025-05-09 18:30 ` pr-tracker-bot
0 siblings, 1 reply; 4+ messages in thread
From: Palmer Dabbelt @ 2025-05-09 16:11 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-riscv, linux-kernel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2140 bytes --]
The following changes since commit 92a09c47464d040866cf2b4cd052bc60555185fb:
Linux 6.15-rc5 (2025-05-04 13:55:04 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-6.15-rc6
merged tag 'riscv-fixes-6.15-rc6'
for you to fetch changes up to 01534f3e0dd75e27ed03e5542f0c7bf6aa7130f1:
Merge tag 'riscv-fixes-6.15-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux into fixes (2025-05-08 09:40:21 -0700)
----------------------------------------------------------------
RISC-V Fixes for 6.15-rc6
* The compressed half-word misaligned access instructions (c.lhu, c.lh,
and c.sh) from the Zcb extension are now properly emulated.
* A series of fixes to properly emulate permissions while handling
userspace misaligned accesses.
* A pair of fixes for PR_GET_TAGGED_ADDR_CTRL to avoid accessing the
envcfg CSR on systems that don't support that CSR, and to report those
failures up to userspace.
* The .rela.dyn section is no longer stripped from vmlinux, as it is
necessary to relocate the kernel under some conditions (including
kexec).
----------------------------------------------------------------
Alexandre Ghiti (1):
scripts: Do not strip .rela.dyn section
Clément Léger (3):
riscv: misaligned: factorize trap handling
riscv: misaligned: enable IRQs while handling misaligned accesses
riscv: misaligned: use get_user() instead of __get_user()
Nam Cao (1):
riscv: Fix kernel crash due to PR_SET_TAGGED_ADDR_CTRL
Nylon Chen (1):
riscv: misaligned: Add handling for ZCB instructions
Palmer Dabbelt (1):
Merge tag 'riscv-fixes-6.15-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux into fixes
Samuel Holland (1):
riscv: Disallow PR_GET_TAGGED_ADDR_CTRL without Supm
arch/riscv/kernel/process.c | 6 ++++
arch/riscv/kernel/traps.c | 64 +++++++++++++++++++++---------------
arch/riscv/kernel/traps_misaligned.c | 19 ++++++++++-
scripts/Makefile.vmlinux | 2 +-
4 files changed, 62 insertions(+), 29 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-07-04 17:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-07-04 15:43 [GIT PULL] RISC-V Fixes for 6.15-rc6 Palmer Dabbelt
2025-07-04 17:36 ` pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2025-05-09 16:11 Palmer Dabbelt
2025-05-09 18:30 ` pr-tracker-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®