Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964962AbcJVSLB (ORCPT ); Sat, 22 Oct 2016 14:11:01 -0400 Received: from mail-lf0-f68.google.com ([209.85.215.68]:34625 "EHLO mail-lf0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750828AbcJVSK7 (ORCPT ); Sat, 22 Oct 2016 14:10:59 -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] x86/entry64: remove unused audit related macros Date: Sun, 23 Oct 2016 00:10:32 +0600 Message-Id: <20161022181032.19135-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: 834 Lines: 28 which are ocured in the 86a1c34a929f commit (x86_64 syscall audit fast-path by Roland McGrath ) and now they are not used anymore. Signed-off-by: Alexander Kuleshov --- 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