linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] RISC-V Fixes for 5.15-rc5
@ 2021-10-09  4:38 Palmer Dabbelt
  2021-10-09 15:41 ` Palmer Dabbelt
  2021-10-09 16:11 ` pr-tracker-bot
  0 siblings, 2 replies; 3+ messages in thread
From: Palmer Dabbelt @ 2021-10-09  4:38 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-riscv, linux-kernel

The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:

  Linux 5.15-rc1 (2021-09-12 16:28:37 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-5.15-rc5

for you to fetch changes up to 3ef6ca4f354c53abf263cbeb51e7272523c294d8:

  checksyscalls: Unconditionally ignore fstat{,at}64 (2021-10-07 17:16:28 -0700)

----------------------------------------------------------------
RISC-V Fixes for 5.15-rc5

* A pair of fixes (along with the necessary cleanup) to our VDSO, to
  avoid
* A fix to checksyscalls to teach it about our rv32 UABI.
* A fix to add clone3() to the rv32 UABI, which was pointed out by
  checksyscalls.
* A fix to properly flush the icache on the local CPU in addition to the
  remote CPUs.

----------------------------------------------------------------
Alexandre Ghiti (1):
      riscv: Flush current cpu icache before other cpus

Palmer Dabbelt (4):
      Merge remote-tracking branch 'palmer/riscv-vdso-cleanup' into fixes
      RISC-V: Include clone3() on rv32
      Merge remote-tracking branch 'palmer/riscv-clone3' into fixes
      checksyscalls: Unconditionally ignore fstat{,at}64

Tong Tiangen (3):
      riscv/vdso: Refactor asm/vdso.h
      riscv/vdso: Move vdso data page up front
      riscv/vdso: make arch_setup_additional_pages wait for mmap_sem for write killable

 arch/riscv/include/asm/syscall.h     |  1 +
 arch/riscv/include/asm/vdso.h        | 18 ++++++++----
 arch/riscv/include/uapi/asm/unistd.h |  3 +-
 arch/riscv/kernel/syscall_table.c    |  1 -
 arch/riscv/kernel/vdso.c             | 53 ++++++++++++++++++++++--------------
 arch/riscv/kernel/vdso/vdso.lds.S    |  3 +-
 arch/riscv/mm/cacheflush.c           |  2 ++
 scripts/checksyscalls.sh             |  6 ++--
 8 files changed, 56 insertions(+), 31 deletions(-)

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

* Re: [GIT PULL] RISC-V Fixes for 5.15-rc5
  2021-10-09  4:38 [GIT PULL] RISC-V Fixes for 5.15-rc5 Palmer Dabbelt
@ 2021-10-09 15:41 ` Palmer Dabbelt
  2021-10-09 16:11 ` pr-tracker-bot
  1 sibling, 0 replies; 3+ messages in thread
From: Palmer Dabbelt @ 2021-10-09 15:41 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-riscv, linux-kernel

On Fri, 08 Oct 2021 21:38:14 PDT (-0700), Palmer Dabbelt wrote:
> The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:
>
>   Linux 5.15-rc1 (2021-09-12 16:28:37 -0700)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-5.15-rc5
>
> for you to fetch changes up to 3ef6ca4f354c53abf263cbeb51e7272523c294d8:
>
>   checksyscalls: Unconditionally ignore fstat{,at}64 (2021-10-07 17:16:28 -0700)
>
> ----------------------------------------------------------------
> RISC-V Fixes for 5.15-rc5
>
> * A pair of fixes (along with the necessary cleanup) to our VDSO, to
>   avoid

Sorry, that should be something more like

   * A pair of fixes (along with the necessory cleanup) to our VDSO, to
     avoid a locking during OOM and to prevent the text from overflowing 
     into the data page.

> * A fix to checksyscalls to teach it about our rv32 UABI.
> * A fix to add clone3() to the rv32 UABI, which was pointed out by
>   checksyscalls.
> * A fix to properly flush the icache on the local CPU in addition to the
>   remote CPUs.
>
> ----------------------------------------------------------------
> Alexandre Ghiti (1):
>       riscv: Flush current cpu icache before other cpus
>
> Palmer Dabbelt (4):
>       Merge remote-tracking branch 'palmer/riscv-vdso-cleanup' into fixes
>       RISC-V: Include clone3() on rv32
>       Merge remote-tracking branch 'palmer/riscv-clone3' into fixes
>       checksyscalls: Unconditionally ignore fstat{,at}64
>
> Tong Tiangen (3):
>       riscv/vdso: Refactor asm/vdso.h
>       riscv/vdso: Move vdso data page up front
>       riscv/vdso: make arch_setup_additional_pages wait for mmap_sem for write killable
>
>  arch/riscv/include/asm/syscall.h     |  1 +
>  arch/riscv/include/asm/vdso.h        | 18 ++++++++----
>  arch/riscv/include/uapi/asm/unistd.h |  3 +-
>  arch/riscv/kernel/syscall_table.c    |  1 -
>  arch/riscv/kernel/vdso.c             | 53 ++++++++++++++++++++++--------------
>  arch/riscv/kernel/vdso/vdso.lds.S    |  3 +-
>  arch/riscv/mm/cacheflush.c           |  2 ++
>  scripts/checksyscalls.sh             |  6 ++--
>  8 files changed, 56 insertions(+), 31 deletions(-)

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

* Re: [GIT PULL] RISC-V Fixes for 5.15-rc5
  2021-10-09  4:38 [GIT PULL] RISC-V Fixes for 5.15-rc5 Palmer Dabbelt
  2021-10-09 15:41 ` Palmer Dabbelt
@ 2021-10-09 16:11 ` pr-tracker-bot
  1 sibling, 0 replies; 3+ messages in thread
From: pr-tracker-bot @ 2021-10-09 16:11 UTC (permalink / raw)
  To: Palmer Dabbelt; +Cc: Linus Torvalds, linux-riscv, linux-kernel

The pull request you sent on Fri, 08 Oct 2021 21:38:14 -0700 (PDT):

> git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-5.15-rc5

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/717478d89fe22df61a4ecf73b1adb31b5f8d1bba

Thank you!

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

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

end of thread, other threads:[~2021-10-09 16:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-09  4:38 [GIT PULL] RISC-V Fixes for 5.15-rc5 Palmer Dabbelt
2021-10-09 15:41 ` Palmer Dabbelt
2021-10-09 16:11 ` 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;
as well as URLs for NNTP newsgroup(s).