All of lore.kernel.org
 help / color / mirror / Atom feed
From: Palmer Dabbelt <palmer@dabbelt.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [GIT PULL] RISC-V Fixes for 5.15-rc5
Date: Sat, 09 Oct 2021 08:41:36 -0700 (PDT)	[thread overview]
Message-ID: <mhng-8bd1a7b1-4ed8-4da1-b2eb-96b189dbadea@palmerdabbelt-glaptop> (raw)
In-Reply-To: <mhng-26107d68-d2af-46eb-a8a4-43c1496a9ef4@palmerdabbelt-glaptop>

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(-)

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [GIT PULL] RISC-V Fixes for 5.15-rc5
Date: Sat, 09 Oct 2021 08:41:36 -0700 (PDT)	[thread overview]
Message-ID: <mhng-8bd1a7b1-4ed8-4da1-b2eb-96b189dbadea@palmerdabbelt-glaptop> (raw)
In-Reply-To: <mhng-26107d68-d2af-46eb-a8a4-43c1496a9ef4@palmerdabbelt-glaptop>

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(-)

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

  reply	other threads:[~2021-10-09 15:41 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-09  4:38 [GIT PULL] RISC-V Fixes for 5.15-rc5 Palmer Dabbelt
2021-10-09  4:38 ` Palmer Dabbelt
2021-10-09 15:41 ` Palmer Dabbelt [this message]
2021-10-09 15:41   ` Palmer Dabbelt
2021-10-09 16:11 ` pr-tracker-bot
2021-10-09 16:11   ` 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=mhng-8bd1a7b1-4ed8-4da1-b2eb-96b189dbadea@palmerdabbelt-glaptop \
    --to=palmer@dabbelt.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=torvalds@linux-foundation.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.