public inbox for linux-riscv@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] riscv: Remove unused _TIF_WORK_MASK
@ 2024-07-11 11:15 Jinjie Ruan
  2024-07-14  8:40 ` Guo Ren
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jinjie Ruan @ 2024-07-11 11:15 UTC (permalink / raw)
  To: paul.walmsley, palmer, aou, samitolvanen, debug, andy.chiu,
	guoren, songshuaishuai, bjorn, linux-riscv, linux-kernel
  Cc: ruanjinjie

Since commit f0bddf50586d ("riscv: entry: Convert to generic entry"),
_TIF_WORK_MASK is no longer used, so remove it.

Fixes: f0bddf50586d ("riscv: entry: Convert to generic entry")
Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
---
 arch/riscv/include/asm/thread_info.h | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/arch/riscv/include/asm/thread_info.h b/arch/riscv/include/asm/thread_info.h
index 5d473343634b..0eead6b7b790 100644
--- a/arch/riscv/include/asm/thread_info.h
+++ b/arch/riscv/include/asm/thread_info.h
@@ -111,8 +111,4 @@ int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
 #define _TIF_UPROBE		(1 << TIF_UPROBE)
 #define _TIF_RISCV_V_DEFER_RESTORE	(1 << TIF_RISCV_V_DEFER_RESTORE)
 
-#define _TIF_WORK_MASK \
-	(_TIF_NOTIFY_RESUME | _TIF_SIGPENDING | _TIF_NEED_RESCHED | \
-	 _TIF_NOTIFY_SIGNAL | _TIF_UPROBE)
-
 #endif /* _ASM_RISCV_THREAD_INFO_H */
-- 
2.34.1


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

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

* Re: [PATCH] riscv: Remove unused _TIF_WORK_MASK
  2024-07-11 11:15 [PATCH] riscv: Remove unused _TIF_WORK_MASK Jinjie Ruan
@ 2024-07-14  8:40 ` Guo Ren
  2024-08-20  2:41 ` Jinjie Ruan
  2024-09-17 13:00 ` patchwork-bot+linux-riscv
  2 siblings, 0 replies; 5+ messages in thread
From: Guo Ren @ 2024-07-14  8:40 UTC (permalink / raw)
  To: Jinjie Ruan
  Cc: paul.walmsley, palmer, aou, samitolvanen, debug, andy.chiu,
	songshuaishuai, bjorn, linux-riscv, linux-kernel

On Thu, Jul 11, 2024 at 7:10 PM Jinjie Ruan <ruanjinjie@huawei.com> wrote:
>
> Since commit f0bddf50586d ("riscv: entry: Convert to generic entry"),
> _TIF_WORK_MASK is no longer used, so remove it.
Yes, you got it.

Reviewed-by: Guo Ren <guoren@kernel.org>

>
> Fixes: f0bddf50586d ("riscv: entry: Convert to generic entry")
> Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
> ---
>  arch/riscv/include/asm/thread_info.h | 4 ----
>  1 file changed, 4 deletions(-)
>
> diff --git a/arch/riscv/include/asm/thread_info.h b/arch/riscv/include/asm/thread_info.h
> index 5d473343634b..0eead6b7b790 100644
> --- a/arch/riscv/include/asm/thread_info.h
> +++ b/arch/riscv/include/asm/thread_info.h
> @@ -111,8 +111,4 @@ int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
>  #define _TIF_UPROBE            (1 << TIF_UPROBE)
>  #define _TIF_RISCV_V_DEFER_RESTORE     (1 << TIF_RISCV_V_DEFER_RESTORE)
>
> -#define _TIF_WORK_MASK \
> -       (_TIF_NOTIFY_RESUME | _TIF_SIGPENDING | _TIF_NEED_RESCHED | \
> -        _TIF_NOTIFY_SIGNAL | _TIF_UPROBE)
> -
>  #endif /* _ASM_RISCV_THREAD_INFO_H */
> --
> 2.34.1
>


-- 
Best Regards
 Guo Ren

_______________________________________________
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: [PATCH] riscv: Remove unused _TIF_WORK_MASK
  2024-07-11 11:15 [PATCH] riscv: Remove unused _TIF_WORK_MASK Jinjie Ruan
  2024-07-14  8:40 ` Guo Ren
@ 2024-08-20  2:41 ` Jinjie Ruan
  2024-08-20  3:56   ` Andy Chiu
  2024-09-17 13:00 ` patchwork-bot+linux-riscv
  2 siblings, 1 reply; 5+ messages in thread
From: Jinjie Ruan @ 2024-08-20  2:41 UTC (permalink / raw)
  To: paul.walmsley, palmer, aou, samitolvanen, debug, andy.chiu,
	guoren, songshuaishuai, bjorn, linux-riscv, linux-kernel



On 2024/7/11 19:15, Jinjie Ruan wrote:
> Since commit f0bddf50586d ("riscv: entry: Convert to generic entry"),
> _TIF_WORK_MASK is no longer used, so remove it.
> 
> Fixes: f0bddf50586d ("riscv: entry: Convert to generic entry")
> Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
> ---
>  arch/riscv/include/asm/thread_info.h | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/arch/riscv/include/asm/thread_info.h b/arch/riscv/include/asm/thread_info.h
> index 5d473343634b..0eead6b7b790 100644
> --- a/arch/riscv/include/asm/thread_info.h
> +++ b/arch/riscv/include/asm/thread_info.h
> @@ -111,8 +111,4 @@ int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
>  #define _TIF_UPROBE		(1 << TIF_UPROBE)
>  #define _TIF_RISCV_V_DEFER_RESTORE	(1 << TIF_RISCV_V_DEFER_RESTORE)
>  
> -#define _TIF_WORK_MASK \
> -	(_TIF_NOTIFY_RESUME | _TIF_SIGPENDING | _TIF_NEED_RESCHED | \
> -	 _TIF_NOTIFY_SIGNAL | _TIF_UPROBE)
> -

Ping.

>  #endif /* _ASM_RISCV_THREAD_INFO_H */

_______________________________________________
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: [PATCH] riscv: Remove unused _TIF_WORK_MASK
  2024-08-20  2:41 ` Jinjie Ruan
@ 2024-08-20  3:56   ` Andy Chiu
  0 siblings, 0 replies; 5+ messages in thread
From: Andy Chiu @ 2024-08-20  3:56 UTC (permalink / raw)
  To: Jinjie Ruan
  Cc: paul.walmsley, palmer, aou, samitolvanen, debug, guoren,
	songshuaishuai, bjorn, linux-riscv, linux-kernel

On Tue, Aug 20, 2024 at 10:42 AM Jinjie Ruan <ruanjinjie@huawei.com> wrote:
>
>
>
> On 2024/7/11 19:15, Jinjie Ruan wrote:
> > Since commit f0bddf50586d ("riscv: entry: Convert to generic entry"),
> > _TIF_WORK_MASK is no longer used, so remove it.
> >
> > Fixes: f0bddf50586d ("riscv: entry: Convert to generic entry")
> > Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>

Reviewed-by: Andy Chiu <andy.chiu@sifive.com>

> > ---
> >  arch/riscv/include/asm/thread_info.h | 4 ----
> >  1 file changed, 4 deletions(-)
> >
> > diff --git a/arch/riscv/include/asm/thread_info.h b/arch/riscv/include/asm/thread_info.h
> > index 5d473343634b..0eead6b7b790 100644
> > --- a/arch/riscv/include/asm/thread_info.h
> > +++ b/arch/riscv/include/asm/thread_info.h
> > @@ -111,8 +111,4 @@ int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
> >  #define _TIF_UPROBE          (1 << TIF_UPROBE)
> >  #define _TIF_RISCV_V_DEFER_RESTORE   (1 << TIF_RISCV_V_DEFER_RESTORE)
> >
> > -#define _TIF_WORK_MASK \
> > -     (_TIF_NOTIFY_RESUME | _TIF_SIGPENDING | _TIF_NEED_RESCHED | \
> > -      _TIF_NOTIFY_SIGNAL | _TIF_UPROBE)
> > -
>
> Ping.
>
> >  #endif /* _ASM_RISCV_THREAD_INFO_H */

_______________________________________________
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: [PATCH] riscv: Remove unused _TIF_WORK_MASK
  2024-07-11 11:15 [PATCH] riscv: Remove unused _TIF_WORK_MASK Jinjie Ruan
  2024-07-14  8:40 ` Guo Ren
  2024-08-20  2:41 ` Jinjie Ruan
@ 2024-09-17 13:00 ` patchwork-bot+linux-riscv
  2 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+linux-riscv @ 2024-09-17 13:00 UTC (permalink / raw)
  To: Jinjie Ruan
  Cc: linux-riscv, paul.walmsley, palmer, aou, samitolvanen, debug,
	andy.chiu, guoren, songshuaishuai, bjorn, linux-kernel

Hello:

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

On Thu, 11 Jul 2024 19:15:08 +0800 you wrote:
> Since commit f0bddf50586d ("riscv: entry: Convert to generic entry"),
> _TIF_WORK_MASK is no longer used, so remove it.
> 
> Fixes: f0bddf50586d ("riscv: entry: Convert to generic entry")
> Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
> ---
>  arch/riscv/include/asm/thread_info.h | 4 ----
>  1 file changed, 4 deletions(-)

Here is the summary with links:
  - riscv: Remove unused _TIF_WORK_MASK
    https://git.kernel.org/riscv/c/cea9d27705d6

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

end of thread, other threads:[~2024-09-17 13:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-11 11:15 [PATCH] riscv: Remove unused _TIF_WORK_MASK Jinjie Ruan
2024-07-14  8:40 ` Guo Ren
2024-08-20  2:41 ` Jinjie Ruan
2024-08-20  3:56   ` Andy Chiu
2024-09-17 13:00 ` patchwork-bot+linux-riscv

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox