[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <87d0xxpq6b.fsf@concordia.ellerman.id.au>
Date: Tue, 15 May 2018 13:13:00 +1000
From: Michael Ellerman <mpe@...erman.id.au>
To: Dave Martin <Dave.Martin@....com>, linux-kernel@...r.kernel.org
Cc: Ralf Baechle <ralf@...ux-mips.org>,
James Hogan <jhogan@...nel.org>,
Benjamin Herrenschmidt <benh@...nel.crashing.org>,
Paul Mackerras <paulus@...ba.org>,
"David S. Miller" <davem@...emloft.net>,
Ingo Molnar <mingo@...hat.com>,
Peter Zijlstra <peterz@...radead.org>,
Steven Rostedt <rostedt@...dmis.org>,
Oleg Nesterov <oleg@...hat.com>, linux-arch@...r.kernel.org
Subject: Re: [PATCH REPOST 4/5] powerpc: Use update_thread_flag()
Dave Martin <Dave.Martin@....com> writes:
> This patch uses the new update_thread_flag() helper to simplify a
> couple of if () set; else clear; constructs.
>
> No functional change.
>
> Signed-off-by: Dave Martin <Dave.Martin@....com>
> Cc: Benjamin Herrenschmidt <benh@...nel.crashing.org>
> Cc: Paul Mackerras <paulus@...ba.org>
> Cc: Michael Ellerman <mpe@...erman.id.au>
> ---
> arch/powerpc/include/asm/elf.h | 10 ++--------
> 1 file changed, 2 insertions(+), 8 deletions(-)
>
> diff --git a/arch/powerpc/include/asm/elf.h b/arch/powerpc/include/asm/elf.h
> index 548d9a4..136c9b1 100644
> --- a/arch/powerpc/include/asm/elf.h
> +++ b/arch/powerpc/include/asm/elf.h
> @@ -88,14 +88,8 @@ typedef elf_vrregset_t elf_fpxregset_t;
> #ifdef __powerpc64__
> # define SET_PERSONALITY(ex) \
> do { \
> - if (((ex).e_flags & 0x3) == 2) \
> - set_thread_flag(TIF_ELF2ABI); \
> - else \
> - clear_thread_flag(TIF_ELF2ABI); \
> - if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
> - set_thread_flag(TIF_32BIT); \
> - else \
> - clear_thread_flag(TIF_32BIT); \
> + update_thread_flag(TIF_ELF2ABI, ((ex).e_flags & 0x3) == 2); \
> + update_thread_flag(TIF_32BIT, (ex).e_ident[EI_CLASS] == ELFCLASS32); \
> if (personality(current->personality) != PER_LINUX32) \
> set_personality(PER_LINUX | \
> (current->personality & (~PER_MASK))); \
Thanks for cleaning it up.
Acked-by: Michael Ellerman <mpe@...erman.id.au>
cheers
Powered by blists - more mailing lists