From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0B038C43218 for ; Tue, 11 Jun 2019 14:38:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D436A20896 for ; Tue, 11 Jun 2019 14:38:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391380AbfFKOiv (ORCPT ); Tue, 11 Jun 2019 10:38:51 -0400 Received: from Galois.linutronix.de ([146.0.238.70]:58340 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387486AbfFKOiu (ORCPT ); Tue, 11 Jun 2019 10:38:50 -0400 Received: from [5.158.153.52] (helo=nanos.tec.linutronix.de) by Galois.linutronix.de with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.80) (envelope-from ) id 1hahvA-00052j-8k; Tue, 11 Jun 2019 16:38:44 +0200 Date: Tue, 11 Jun 2019 16:38:43 +0200 (CEST) From: Thomas Gleixner To: Sudeep Holla cc: x86@kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Catalin Marinas , Will Deacon , Oleg Nesterov , Richard Weinberger , jdike@addtoit.com, Steve Capper , Haibo Xu , Bin Lu , Andy Lutomirski , Ingo Molnar , Borislav Petkov Subject: Re: [PATCH v4 2/4] x86: simplify _TIF_SYSCALL_EMU handling In-Reply-To: <20190523090618.13410-3-sudeep.holla@arm.com> Message-ID: References: <20190523090618.13410-1-sudeep.holla@arm.com> <20190523090618.13410-3-sudeep.holla@arm.com> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 23 May 2019, Sudeep Holla wrote: $Subject: Please use the proper prefix and start the sentence with an upper case letter. x86/entry: Simplify _TIF_SYSCALL_EMU handling > The usage of emulated/_TIF_SYSCALL_EMU flags in syscall_trace_enter > seems to be bit overcomplicated than required. Let's simplify it. s/seems to be bit overcomplicated/is more complicated/ Either you are sure that it is overengineered, then say so. If not, then you should not touch the code at all. s/Let's simplify it.// 'Let's do X.' is a popular, but technically useless phrase. > Cc: Andy Lutomirski > Cc: Thomas Gleixner > Cc: Ingo Molnar > Cc: Borislav Petkov > Acked-by: Oleg Nesterov > Signed-off-by: Sudeep Holla This is a nice simplification indeed! With the changelog fixed: Reviewed-by: Thomas Gleixner