public inbox for linux-riscv@lists.infradead.org
 help / color / mirror / Atom feed
From: patchwork-bot+linux-riscv@kernel.org
To: Andy Chiu <andy.chiu@sifive.com>
Cc: linux-riscv@lists.infradead.org, palmer@dabbelt.com,
	paul.walmsley@sifive.com, greentime.hu@sifive.com,
	guoren@linux.alibaba.com, bjorn@kernel.org, charlie@rivosinc.com,
	ardb@kernel.org, arnd@arndb.de, peterz@infradead.org,
	tglx@linutronix.de, ebiggers@kernel.org, aou@eecs.berkeley.edu
Subject: Re: [v10, 00/10] riscv: support kernel-mode Vector
Date: Fri, 12 Jan 2024 06:30:30 +0000	[thread overview]
Message-ID: <170504103075.17535.16233182023874920613.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20240111131558.31211-1-andy.chiu@sifive.com>

Hello:

This series was applied to riscv/linux.git (for-next)
by Palmer Dabbelt <palmer@rivosinc.com>:

On Thu, 11 Jan 2024 13:15:48 +0000 you wrote:
> This series provides support running Vector in kernel mode.
> Additionally, kernel-mode Vector can be configured to run without
> turnning off preemption on a CONFIG_PREEMPT kernel. Along with the
> suport, we add Vector optimized copy_{to,from}_user. And provide a
> simple threshold to decide when to run the vectorized functions.
> 
> We decided to drop vectorized memcpy/memset/memmove for the moment due
> to the concern of memory side-effect in kernel_vector_begin(). The
> detailed description can be found at v9[1]
> 
> [...]

Here is the summary with links:
  - [v10,01/10] riscv: Add support for kernel mode vector
    https://git.kernel.org/riscv/c/c0ae350f714f
  - [v10,02/10] riscv: vector: make Vector always available for softirq context
    https://git.kernel.org/riscv/c/ebf52ac30e4f
  - [v10,03/10] riscv: Add vector extension XOR implementation
    https://git.kernel.org/riscv/c/9ff97211a623
  - [v10,04/10] riscv: sched: defer restoring Vector context for user
    https://git.kernel.org/riscv/c/f4471252f3b9
  - [v10,05/10] riscv: lib: vectorize copy_to_user/copy_from_user
    https://git.kernel.org/riscv/c/145ca6eddd70
  - [v10,06/10] riscv: fpu: drop SR_SD bit checking
    https://git.kernel.org/riscv/c/25a830944773
  - [v10,07/10] riscv: vector: do not pass task_struct into riscv_v_vstate_{save,restore}()
    https://git.kernel.org/riscv/c/9dece8bf0343
  - [v10,08/10] riscv: vector: use a mask to write vstate_ctrl
    https://git.kernel.org/riscv/c/c05992747c96
  - [v10,09/10] riscv: vector: use kmem_cache to manage vector context
    https://git.kernel.org/riscv/c/660217429614
  - [v10,10/10] riscv: vector: allow kernel-mode Vector with preemption
    https://git.kernel.org/riscv/c/aa23c6172d33

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

  parent reply	other threads:[~2024-01-12  6:30 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-11 13:15 [v10, 00/10] riscv: support kernel-mode Vector Andy Chiu
2024-01-11 13:15 ` [v10, 01/10] riscv: Add support for kernel mode vector Andy Chiu
2024-01-11 13:15 ` [v10, 02/10] riscv: vector: make Vector always available for softirq context Andy Chiu
2024-01-11 13:15 ` [v10, 03/10] riscv: Add vector extension XOR implementation Andy Chiu
2024-01-11 13:15 ` [v10, 04/10] riscv: sched: defer restoring Vector context for user Andy Chiu
2024-01-11 13:15 ` [v10, 05/10] riscv: lib: vectorize copy_to_user/copy_from_user Andy Chiu
2024-01-11 13:15 ` [v10, 06/10] riscv: fpu: drop SR_SD bit checking Andy Chiu
2024-01-11 13:15 ` [v10, 07/10] riscv: vector: do not pass task_struct into riscv_v_vstate_{save,restore}() Andy Chiu
2024-01-11 13:15 ` [v10, 08/10] riscv: vector: use a mask to write vstate_ctrl Andy Chiu
2024-01-11 13:15 ` [v10, 09/10] riscv: vector: use kmem_cache to manage vector context Andy Chiu
2024-01-11 13:15 ` [v10, 10/10] riscv: vector: allow kernel-mode Vector with preemption Andy Chiu
2024-01-12  6:30 ` patchwork-bot+linux-riscv [this message]
2024-01-12 15:29   ` [v10, 00/10] riscv: support kernel-mode Vector Björn Töpel
2024-01-12 16:03     ` Andy Chiu
2024-01-12 18:35       ` Palmer Dabbelt
2024-01-12 18:47         ` Andy Chiu
2024-01-12 19:01           ` Palmer Dabbelt
2024-01-12 18:46       ` Andy Chiu
2024-01-12 20:04   ` Lad, Prabhakar
2024-01-13 13:25     ` Andy Chiu
2024-01-15 11:36       ` Lad, Prabhakar

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=170504103075.17535.16233182023874920613.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+linux-riscv@kernel.org \
    --cc=andy.chiu@sifive.com \
    --cc=aou@eecs.berkeley.edu \
    --cc=ardb@kernel.org \
    --cc=arnd@arndb.de \
    --cc=bjorn@kernel.org \
    --cc=charlie@rivosinc.com \
    --cc=ebiggers@kernel.org \
    --cc=greentime.hu@sifive.com \
    --cc=guoren@linux.alibaba.com \
    --cc=linux-riscv@lists.infradead.org \
    --cc=palmer@dabbelt.com \
    --cc=paul.walmsley@sifive.com \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox