All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] RISC-V: Remove unused "size" in ptrace
@ 2023-08-30 20:37 Palmer Dabbelt
  2023-08-31 16:31 ` Conor Dooley
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Palmer Dabbelt @ 2023-08-30 20:37 UTC (permalink / raw)
  To: andy.chiu; +Cc: linux-riscv, Palmer Dabbelt, kernel test robot

Looks like this just got lost somewhere in the respins.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202308310306.tOrkoBmI-lkp@intel.com/
Fixes: dbe46b094026 ("RISC-V: Add ptrace support for vectors")
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
---
 arch/riscv/kernel/ptrace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/riscv/kernel/ptrace.c b/arch/riscv/kernel/ptrace.c
index 9a87e5d490b5..2afe460de16a 100644
--- a/arch/riscv/kernel/ptrace.c
+++ b/arch/riscv/kernel/ptrace.c
@@ -120,7 +120,7 @@ static int riscv_vr_set(struct task_struct *target,
 			unsigned int pos, unsigned int count,
 			const void *kbuf, const void __user *ubuf)
 {
-	int ret, size;
+	int ret;
 	struct __riscv_v_ext_state *vstate = &target->thread.vstate;
 	struct __riscv_v_regset_state ptrace_vstate;
 
-- 
2.41.0


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

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

* Re: [PATCH] RISC-V: Remove unused "size" in ptrace
  2023-08-30 20:37 [PATCH] RISC-V: Remove unused "size" in ptrace Palmer Dabbelt
@ 2023-08-31 16:31 ` Conor Dooley
  2023-08-31 17:19   ` Nick Desaulniers
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Conor Dooley @ 2023-08-31 16:31 UTC (permalink / raw)
  To: Palmer Dabbelt; +Cc: andy.chiu, linux-riscv, kernel test robot


[-- Attachment #1.1: Type: text/plain, Size: 592 bytes --]

On Wed, Aug 30, 2023 at 01:37:54PM -0700, Palmer Dabbelt wrote:
> Looks like this just got lost somewhere in the respins.
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202308310306.tOrkoBmI-lkp@intel.com/
> Fixes: dbe46b094026 ("RISC-V: Add ptrace support for vectors")
> Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>

Huh, wonder how the patchwork automation missed that. Probably as good a
reminder as any to update the toolchains in use there.
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>

Thanks,
Conor.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

[-- 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] 7+ messages in thread

* Re: [PATCH] RISC-V: Remove unused "size" in ptrace
  2023-08-30 20:37 [PATCH] RISC-V: Remove unused "size" in ptrace Palmer Dabbelt
@ 2023-08-31 17:19   ` Nick Desaulniers
  2023-08-31 17:19   ` Nick Desaulniers
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Nick Desaulniers @ 2023-08-31 17:19 UTC (permalink / raw)
  To: Palmer Dabbelt; +Cc: andy.chiu, linux-riscv, kernel test robot, llvm

On Wed, Aug 30, 2023 at 01:37:54PM -0700, Palmer Dabbelt wrote:
> Looks like this just got lost somewhere in the respins.
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202308310306.tOrkoBmI-lkp@intel.com/
> Fixes: dbe46b094026 ("RISC-V: Add ptrace support for vectors")
> Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>

Thanks for the patch!
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Reported-by: "kernelci.org bot" <bot@kernelci.org>
Closes: https://lore.kernel.org/linux-next/64f03ea1.170a0220.d3dbf.11fd@mx.google.com/

> ---
>  arch/riscv/kernel/ptrace.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/riscv/kernel/ptrace.c b/arch/riscv/kernel/ptrace.c
> index 9a87e5d490b5..2afe460de16a 100644
> --- a/arch/riscv/kernel/ptrace.c
> +++ b/arch/riscv/kernel/ptrace.c
> @@ -120,7 +120,7 @@ static int riscv_vr_set(struct task_struct *target,
>  			unsigned int pos, unsigned int count,
>  			const void *kbuf, const void __user *ubuf)
>  {
> -	int ret, size;
> +	int ret;
>  	struct __riscv_v_ext_state *vstate = &target->thread.vstate;
>  	struct __riscv_v_regset_state ptrace_vstate;
>  
> -- 
> 2.41.0
> 
> 
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv

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

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

* Re: [PATCH] RISC-V: Remove unused "size" in ptrace
@ 2023-08-31 17:19   ` Nick Desaulniers
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Desaulniers @ 2023-08-31 17:19 UTC (permalink / raw)
  To: Palmer Dabbelt; +Cc: andy.chiu, linux-riscv, kernel test robot, llvm

On Wed, Aug 30, 2023 at 01:37:54PM -0700, Palmer Dabbelt wrote:
> Looks like this just got lost somewhere in the respins.
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202308310306.tOrkoBmI-lkp@intel.com/
> Fixes: dbe46b094026 ("RISC-V: Add ptrace support for vectors")
> Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>

Thanks for the patch!
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Reported-by: "kernelci.org bot" <bot@kernelci.org>
Closes: https://lore.kernel.org/linux-next/64f03ea1.170a0220.d3dbf.11fd@mx.google.com/

> ---
>  arch/riscv/kernel/ptrace.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/riscv/kernel/ptrace.c b/arch/riscv/kernel/ptrace.c
> index 9a87e5d490b5..2afe460de16a 100644
> --- a/arch/riscv/kernel/ptrace.c
> +++ b/arch/riscv/kernel/ptrace.c
> @@ -120,7 +120,7 @@ static int riscv_vr_set(struct task_struct *target,
>  			unsigned int pos, unsigned int count,
>  			const void *kbuf, const void __user *ubuf)
>  {
> -	int ret, size;
> +	int ret;
>  	struct __riscv_v_ext_state *vstate = &target->thread.vstate;
>  	struct __riscv_v_regset_state ptrace_vstate;
>  
> -- 
> 2.41.0
> 
> 
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: [PATCH] RISC-V: Remove unused "size" in ptrace
  2023-08-30 20:37 [PATCH] RISC-V: Remove unused "size" in ptrace Palmer Dabbelt
  2023-08-31 16:31 ` Conor Dooley
  2023-08-31 17:19   ` Nick Desaulniers
@ 2023-08-31 21:58 ` Palmer Dabbelt
  2023-08-31 22:02   ` Palmer Dabbelt
  2023-08-31 22:00 ` patchwork-bot+linux-riscv
  3 siblings, 1 reply; 7+ messages in thread
From: Palmer Dabbelt @ 2023-08-31 21:58 UTC (permalink / raw)
  To: andy.chiu, Palmer Dabbelt; +Cc: linux-riscv, kernel test robot


On Wed, 30 Aug 2023 13:37:54 -0700, Palmer Dabbelt wrote:
> Looks like this just got lost somewhere in the respins.
> 
> 

Applied, thanks!

[1/1] RISC-V: Remove unused "size" in ptrace
      https://git.kernel.org/palmer/c/899230bac3b2

Best regards,
-- 
Palmer Dabbelt <palmer@rivosinc.com>


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

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

* Re: [PATCH] RISC-V: Remove unused "size" in ptrace
  2023-08-30 20:37 [PATCH] RISC-V: Remove unused "size" in ptrace Palmer Dabbelt
                   ` (2 preceding siblings ...)
  2023-08-31 21:58 ` Palmer Dabbelt
@ 2023-08-31 22:00 ` patchwork-bot+linux-riscv
  3 siblings, 0 replies; 7+ messages in thread
From: patchwork-bot+linux-riscv @ 2023-08-31 22:00 UTC (permalink / raw)
  To: Palmer Dabbelt; +Cc: linux-riscv, andy.chiu, lkp

Hello:

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

On Wed, 30 Aug 2023 13:37:54 -0700 you wrote:
> Looks like this just got lost somewhere in the respins.
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202308310306.tOrkoBmI-lkp@intel.com/
> Fixes: dbe46b094026 ("RISC-V: Add ptrace support for vectors")
> Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
> 
> [...]

Here is the summary with links:
  - RISC-V: Remove unused "size" in ptrace
    https://git.kernel.org/riscv/c/899230bac3b2

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

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

* Re: [PATCH] RISC-V: Remove unused "size" in ptrace
  2023-08-31 21:58 ` Palmer Dabbelt
@ 2023-08-31 22:02   ` Palmer Dabbelt
  0 siblings, 0 replies; 7+ messages in thread
From: Palmer Dabbelt @ 2023-08-31 22:02 UTC (permalink / raw)
  To: andy.chiu; +Cc: linux-riscv, lkp

On Thu, 31 Aug 2023 14:58:26 PDT (-0700), Palmer Dabbelt wrote:
>
> On Wed, 30 Aug 2023 13:37:54 -0700, Palmer Dabbelt wrote:
>> Looks like this just got lost somewhere in the respins.
>>
>>
>
> Applied, thanks!

I'm just squashing it in, as the offending patch was pretty much tip of 
the tree.

>
> [1/1] RISC-V: Remove unused "size" in ptrace
>       https://git.kernel.org/palmer/c/899230bac3b2
>
> Best regards,

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

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

end of thread, other threads:[~2023-08-31 22:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-30 20:37 [PATCH] RISC-V: Remove unused "size" in ptrace Palmer Dabbelt
2023-08-31 16:31 ` Conor Dooley
2023-08-31 17:19 ` Nick Desaulniers
2023-08-31 17:19   ` Nick Desaulniers
2023-08-31 21:58 ` Palmer Dabbelt
2023-08-31 22:02   ` Palmer Dabbelt
2023-08-31 22:00 ` patchwork-bot+linux-riscv

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.