Re: [PATCH] parisc: Replace test_ti_thread_flag() with test_tsk_thread_flag()

2021-02-03 Thread Helge Deller
On 2/3/21 6:27 AM, Tiezhu Yang wrote: > Use test_tsk_thread_flag() directly instead of test_ti_thread_flag() to > improve readability when the argument type is struct task_struct, it is > similar with commit 5afc78551bf5 ("arm64: Use test_tsk_thread_flag() for > checking TIF_SINGLESTEP"). > >

[PATCH] parisc: Replace test_ti_thread_flag() with test_tsk_thread_flag()

2021-02-02 Thread Tiezhu Yang
Use test_tsk_thread_flag() directly instead of test_ti_thread_flag() to improve readability when the argument type is struct task_struct, it is similar with commit 5afc78551bf5 ("arm64: Use test_tsk_thread_flag() for checking TIF_SINGLESTEP"). Signed-off-by: Tiezhu Yang ---