Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S938661AbcJWN4z (ORCPT ); Sun, 23 Oct 2016 09:56:55 -0400 Received: from mail-lf0-f68.google.com ([209.85.215.68]:35686 "EHLO mail-lf0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752003AbcJWN4y (ORCPT ); Sun, 23 Oct 2016 09:56:54 -0400 From: Alexander Kuleshov To: Thomas Gleixner Cc: Ingo Molnar , "H . Peter Anvin" , Andy Lutomirski , Borislav Petkov , Paolo Bonzini , linux-kernel@vger.kernel.org, Alexander Kuleshov Subject: [PATCH v3] x86/entry64: remove unused audit related macros Date: Sun, 23 Oct 2016 19:56:46 +0600 Message-Id: <20161023135646.4453-1-kuleshovmail@gmail.com> X-Mailer: git-send-email 2.8.0.rc3.1353.gea9bdc0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1321 Lines: 51 These macros were added in: 86a1c34 ("x86_64 syscall audit fast-path") commit. They were used in two-phase sycalls entry tracing, but this functionality was moved to the arch/x86/entry/common.c:syscall_trace_enter() in: 1f484aa ("x86/entry: Move C entry and exit code to arch/x86/entry/common.c") commit. syscall_trace_enter() now uses same defines from , so these defines are no longer used anywhere in entry_64.S outside of it and we may remove them. Signed-off-by: Alexander Kuleshov Reviewed-by: Borislav Petkov --- ChangeLog: v1 -> v2: - Added more details in the commit message. v2 -> v2: - Make commit message more readable arch/x86/entry/entry_64.S | 6 ------ 1 file changed, 6 deletions(-) diff --git a/arch/x86/entry/entry_64.S b/arch/x86/entry/entry_64.S index ef766a3..4362f1c 100644 --- a/arch/x86/entry/entry_64.S +++ b/arch/x86/entry/entry_64.S @@ -38,12 +38,6 @@ #include #include -/* Avoid __ASSEMBLER__'ifying just for this. */ -#include -#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) -#define __AUDIT_ARCH_64BIT 0x80000000 -#define __AUDIT_ARCH_LE 0x40000000 - .code64 .section .entry.text, "ax" -- 2.8.0.rc3.1353.gea9bdc0