Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp13956imu; Mon, 19 Nov 2018 16:50:38 -0800 (PST) X-Google-Smtp-Source: AFSGD/X3es0c2VAg+tF2kzCa414kJ764tkv3SIK56E37CSg5UtJBVppccgR1Ofte/pBo+ej8WXN1 X-Received: by 2002:a17:902:654a:: with SMTP id d10mr3675873pln.324.1542675038538; Mon, 19 Nov 2018 16:50:38 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542675038; cv=none; d=google.com; s=arc-20160816; b=xqIYEOds2zW5jA792zAhiCP6irSFbqv9H1iVs6VBeIYm7hM22FAWyZmFB9+yjxAz8U siSs1SmfE/Ffc9BRhkDRwJPEei11saTlUGAS7TZiiaBhFlYCpcngb0pmvgcKdlUZLsot U/dBQDa54D94c4KP4Jj7AIjUGqxlQFc6mLI3mmKJfDz9S6yeEJ13NVhv5h8KgPHvAxnA K5pMqyHmibYQYJPQLrhprObnp0ShDaFRYGc0gb87W71K0ticIWT2vIDyK0oT8hdfT4pQ IVpJ4g34h3cZPMvNGH8SPtm0vTsBZag00FfUon//ID0IKE1Bx5zTOfqNvyc1A0tjcPyZ L6hA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:in-reply-to:content-disposition :mime-version:message-id:subject:cc:to:from:date; bh=oNqswcxofiqpQoxRR8htos+qqhX86CmWm4N/Aix1M/0=; b=m3VYDO+YY691HlqTf7i9QFfN9gQNJFZTN1faFxWAvKrzFoj0cG/PVgd026Vab/KuJa VJFHY9xqILrre8knez67IDIeOlKl8Ch8pwaWn0Cqp6SCW+bziO8U7t0ayyFK2I9atv5a vIidyUsbVss/EC7TG2a8bocfXd+6ej0b9eN1JupIrfwypqFs+CT28SXgvei2VIogTCxD vQeN0jLD3i4qMtvm99NpxQwrKVXlpF++KHNWWKWNF90InGQbO/solMoZXufGkmPSoMWD x0Mfc3QlMulLD6aU+ZktdCZXPrCiNKGLWImSaE+ogubTznyCZ+RNAPtAbxCpj6dYCIyc RrFg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v11si28842511pgo.11.2018.11.19.16.50.01; Mon, 19 Nov 2018 16:50:38 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732285AbeKTKlE (ORCPT + 99 others); Tue, 20 Nov 2018 05:41:04 -0500 Received: from vmicros1.altlinux.org ([194.107.17.57]:53926 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731643AbeKTKlD (ORCPT ); Tue, 20 Nov 2018 05:41:03 -0500 Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 45D2872CA5E; Tue, 20 Nov 2018 03:14:48 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id 392DE7CD1FF; Tue, 20 Nov 2018 03:14:48 +0300 (MSK) Date: Tue, 20 Nov 2018 03:14:48 +0300 From: "Dmitry V. Levin" To: Andy Lutomirski , Guan Xuetao Cc: Elvira Khabirova , linux-kernel@vger.kernel.org Subject: [PATCH v2 03/15] Move EM_UNICORE to uapi/linux/elf-em.h Message-ID: <20181120001448.GC11387@altlinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181120001128.GA11300@altlinux.org> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This should never have been defined in the arch tree to begin with, and now uapi/linux/audit.h header is going to use EM_UNICORE in order to define AUDIT_ARCH_UNICORE which is needed to implement syscall_get_arch() which in turn is required to extend the generic ptrace API with PTRACE_GET_SYSCALL_INFO request. Signed-off-by: Dmitry V. Levin --- v2: unchanged since v1 arch/unicore32/include/asm/elf.h | 3 +-- include/uapi/linux/elf-em.h | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/unicore32/include/asm/elf.h b/arch/unicore32/include/asm/elf.h index 829042d07722..ae66dc1be49e 100644 --- a/arch/unicore32/include/asm/elf.h +++ b/arch/unicore32/include/asm/elf.h @@ -19,6 +19,7 @@ * ELF register definitions.. */ #include +#include typedef unsigned long elf_greg_t; typedef unsigned long elf_freg_t[3]; @@ -28,8 +29,6 @@ typedef elf_greg_t elf_gregset_t[ELF_NGREG]; typedef struct fp_state elf_fpregset_t; -#define EM_UNICORE 110 - #define R_UNICORE_NONE 0 #define R_UNICORE_PC24 1 #define R_UNICORE_ABS32 2 diff --git a/include/uapi/linux/elf-em.h b/include/uapi/linux/elf-em.h index 91b33833630b..a4fba79abbb9 100644 --- a/include/uapi/linux/elf-em.h +++ b/include/uapi/linux/elf-em.h @@ -36,6 +36,7 @@ #define EM_OPENRISC 92 /* OpenRISC 32-bit embedded processor */ #define EM_ARCOMPACT 93 /* ARCompact processor */ #define EM_BLACKFIN 106 /* ADI Blackfin Processor */ +#define EM_UNICORE 110 /* UniCore-32 */ #define EM_ALTERA_NIOS2 113 /* Altera Nios II soft-core processor */ #define EM_TI_C6000 140 /* TI C6X DSPs */ #define EM_HEXAGON 164 /* QUALCOMM Hexagon */ -- ldv