[PATCH v7 02/16] arm64: Use update{,_tsk}_thread_flag()

2018-05-09 Thread Dave Martin
This patch uses the new update_thread_flag() helpers to simplify a couple of if () set; else clear; constructs. No functional change. Signed-off-by: Dave Martin Acked-by: Marc Zyngier Cc: Catalin Marinas Cc: Will Deacon --- arch/arm64/kernel/fpsimd.c | 19 +++ 1 file changed,

Re: [PATCH v7 02/16] arm64: Use update{,_tsk}_thread_flag()

2018-05-09 Thread Will Deacon
Hi Dave, On Wed, May 09, 2018 at 05:12:51PM +0100, Dave Martin wrote: > This patch uses the new update_thread_flag() helpers to simplify a > couple of if () set; else clear; constructs. > > No functional change. > > Signed-off-by: Dave Martin > Acked-by: Marc Zyngier > Cc: Catalin Marinas > C

Re: [PATCH v7 02/16] arm64: Use update{,_tsk}_thread_flag()

2018-05-09 Thread Dave Martin
On Wed, May 09, 2018 at 05:17:28PM +0100, Will Deacon wrote: > Hi Dave, > > On Wed, May 09, 2018 at 05:12:51PM +0100, Dave Martin wrote: > > This patch uses the new update_thread_flag() helpers to simplify a > > couple of if () set; else clear; constructs. > > > > No functional change. > > > > S

Re: [PATCH v7 02/16] arm64: Use update{,_tsk}_thread_flag()

2018-05-09 Thread Marc Zyngier
On 09/05/18 17:27, Dave Martin wrote: > On Wed, May 09, 2018 at 05:17:28PM +0100, Will Deacon wrote: >> Hi Dave, >> >> On Wed, May 09, 2018 at 05:12:51PM +0100, Dave Martin wrote: >>> This patch uses the new update_thread_flag() helpers to simplify a >>> couple of if () set; else clear; constructs.

Re: [PATCH v7 02/16] arm64: Use update{,_tsk}_thread_flag()

2018-05-09 Thread Dave Martin
On Wed, May 09, 2018 at 05:55:51PM +0100, Marc Zyngier wrote: > On 09/05/18 17:27, Dave Martin wrote: > > On Wed, May 09, 2018 at 05:17:28PM +0100, Will Deacon wrote: > >> Hi Dave, > >> > >> On Wed, May 09, 2018 at 05:12:51PM +0100, Dave Martin wrote: > >>> This patch uses the new update_thread_fla

Re: [PATCH v7 02/16] arm64: Use update{,_tsk}_thread_flag()

2018-05-10 Thread Catalin Marinas
On Wed, May 09, 2018 at 05:12:51PM +0100, Dave P Martin wrote: > This patch uses the new update_thread_flag() helpers to simplify a > couple of if () set; else clear; constructs. > > No functional change. > > Signed-off-by: Dave Martin > Acked-by: Marc Zyngier > Cc: Catalin Marinas > Cc: Will