* [GIT PULL] RISC-V Fixes for 6.15-rc6
@ 2025-05-08 12:15 Alexandre Ghiti
0 siblings, 0 replies; 5+ messages in thread
From: Alexandre Ghiti @ 2025-05-08 12:15 UTC (permalink / raw)
To: Palmer Dabbelt, linux-riscv@lists.infradead.org
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/alexghiti/linux
tags/riscv-fixes-6.15-rc6
for you to fetch changes up to 7f1c3de1370bc6a8ad5157336b258067dac0ae9c:
riscv: Disallow PR_GET_TAGGED_ADDR_CTRL without Supm (2025-05-08
12:01:01 +0000)
----------------------------------------------------------------
riscv fixes for 6.15-rc6
- A fix to handle compressed halfword load/store instructions misaligned
accesses
- A fix to allow user memory access while handling a misaligned access
- 2 fixes to return an error if the pointer masking extension is not
implemented on the platform but userspace still tries to access it,
which caused oops on some early platforms
- A fix to prevent the stripping of .rela.dyn so that a vmlinux loaded
by kexec can successfully boot
----------------------------------------------------------------
All the patches have been tested on our github CI and no regressions
were found against 6.15-rc5
(https://github.com/linux-riscv/linux/pull/387/checks whose results can
be seen here
https://mazarinen.tail1c623.ts.net/riscv-linux/linux-all/build/riscv-fixes-6.15-rc6/).
----------------------------------------------------------------
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
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(-)
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 5+ 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; 5+ messages in thread
From: Palmer Dabbelt @ 2025-05-09 16:11 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-riscv, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 2141 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(-)
[-- Attachment #2: Type: text/plain, Size: 161 bytes --]
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 5+ 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; 5+ 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
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 5+ messages in thread
* [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; 5+ 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(-)
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 5+ 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; 5+ 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
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-07-04 17:39 UTC | newest]
Thread overview: 5+ 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
2025-05-08 12:15 Alexandre Ghiti
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).