Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S938663AbcJWNsI (ORCPT ); Sun, 23 Oct 2016 09:48:08 -0400 Received: from mail-lf0-f68.google.com ([209.85.215.68]:33943 "EHLO mail-lf0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753243AbcJWNsH (ORCPT ); Sun, 23 Oct 2016 09:48:07 -0400 Date: Sun, 23 Oct 2016 19:47:56 +0600 From: Alexander Kuleshov To: Borislav Petkov Cc: Alexander Kuleshov , Thomas Gleixner , Ingo Molnar , "H . Peter Anvin" , Andy Lutomirski , Paolo Bonzini , linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] x86/entry64: remove unused audit related macros Message-ID: <20161023134756.GB1360@localhost> References: <20161023131436.2823-1-kuleshovmail@gmail.com> <20161023133310.hq24zte6n3qqe4f4@pd.tnic> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161023133310.hq24zte6n3qqe4f4@pd.tnic> X-Operating-System: Linux X-Date: Sun Oct 23 18:39:37 +06 2016 User-Agent: Mutt/1.6.0-rc0 ((null)) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1175 Lines: 43 On 10-23-16, Borislav Petkov wrote: > Now, I went and made it a bit more readable and put the commit IDs and > their names on separate lines, like we do in tip: > > "These macros were added in commit > > 86a1c34a929f ("x86_64 syscall audit fast-path"). > > They were used for sycalls auditing, but this functionality was moved to > the arch/x86/entry/common.c:syscall_trace_enter() in > > 1f484aa69046 ("x86/entry: Move C entry and exit code to arch/x86/entry/common.c") > > syscall_trace_enter() now uses the same defines from , > so these defines are no longer used anywhere in entry_64.S and we may > remove them." > Agree, this looks more readable. I will take into account this formatting. > Also, we abbreviate git commits to 12 chars. What you could do is add > this to your .gitconfig: > > [alias] > one = show -s --pretty='format:%h (\"%s\")' > > and then simply do > > $ git one 1f484aa69 > > and it'll format it properly for ya. > > Anyway, just a couple of things to pay attention to in the future. Yes, thanks for this. > With this, you can add > > Reviewed-by: Borislav Petkov > > to your v3. Thank you.