Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp76420imu; Mon, 19 Nov 2018 18:04:58 -0800 (PST) X-Google-Smtp-Source: AFSGD/VlofQB0xs0Wz0vhbkKb9MkKNmculSdlLwGkO2eYodEFbmiqliy5BKe6Ue7pV8nTpbDsbUO X-Received: by 2002:a63:bf0b:: with SMTP id v11mr139809pgf.302.1542679498061; Mon, 19 Nov 2018 18:04:58 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542679498; cv=none; d=google.com; s=arc-20160816; b=ZI15ce/720h6ilXCxD2n9MkhjXjQ+n4KDMjxCKZVPBWq4uZVtUwY9S8H9lQiuYjszm /FTYZgkrmFSWsnra6/7gLrP0g4MZXjnQJTdVjVaWNZNQ1XU9SsaaOazv520+jx3gPfnt /v85wlvFtOlcu9ssu8YiVCG/NuYXgMVtBdU8/RMY6kJVkwihHOMGLLVLH2pjFezTubvU ZL5S0FIICRNIkk0BIH6PgesR2HHjikQawChOhbjZ4hUfdFdbwuBalMXTs8sEs6SU2IKs 4MYTeDnZ216K6zwjgRDl5pGreDZFbs/w5H6q1hHcPO93Sm11xaFCvcrVyE6WZAoKuOQK Gjjw== 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=9L7nIs1eeWTM5ecY1qY9nPr5qh11sCFbcz1fCw39GrQ=; b=YHPvPagpYlqMP14mhCkKJMKtEOuaDigDQeSV4DnXWZxGyAoRLaoZvQJECM3wpuFyIh rmm7Jj9QthvAglXhPnfk56ryfaIXfPADOvT9I3BvLaK1WkDE8g/1XUXe0cR7Y0+hM98R r5uP+Aqu6glMNOHZin3qlsnjipodYyRhvD7Arkp+9ra6lmE3xQHE5Obc5BglQq9OVw6Z L23hiK5aiX1jAPDaTzjt0Hohqey+R8n1LwuuitAfF+w/BDVSf5gB+EBMKNJktdANPS2t 7z8QonE2njsxPnPeoDseitfrpBoQa23zIwjrHzd8FYmbdrIBVGX6xEYp371Jk2AL/Mjo de4w== 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 m20si40067477pgk.323.2018.11.19.18.04.43; Mon, 19 Nov 2018 18:04:58 -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 S1732300AbeKTKlQ (ORCPT + 99 others); Tue, 20 Nov 2018 05:41:16 -0500 Received: from vmicros1.altlinux.org ([194.107.17.57]:54088 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731643AbeKTKlP (ORCPT ); Tue, 20 Nov 2018 05:41:15 -0500 Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 6CC5772CA5E; Tue, 20 Nov 2018 03:15:00 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id 5BFE37CD1FF; Tue, 20 Nov 2018 03:15:00 +0300 (MSK) Date: Tue, 20 Nov 2018 03:15:00 +0300 From: "Dmitry V. Levin" To: Andy Lutomirski , Greentime Hu , Vincent Chen Cc: Elvira Khabirova , linux-kernel@vger.kernel.org Subject: [PATCH v2 04/15] elf-em.h: add EM_NDS32 Message-ID: <20181120001500.GD11387@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 The uapi/linux/audit.h header is going to use EM_NDS32 in order to define AUDIT_ARCH_NDS32 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. The value for EM_NDS32 has been taken from http://www.sco.com/developers/gabi/2012-12-31/ch4.eheader.html Signed-off-by: Dmitry V. Levin --- v2: unchanged since v1 include/uapi/linux/elf-em.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/uapi/linux/elf-em.h b/include/uapi/linux/elf-em.h index a4fba79abbb9..ba2e64cdbb6f 100644 --- a/include/uapi/linux/elf-em.h +++ b/include/uapi/linux/elf-em.h @@ -40,6 +40,8 @@ #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 */ +#define EM_NDS32 167 /* Andes Technology compact code size + embedded RISC processor family */ #define EM_AARCH64 183 /* ARM 64 bit */ #define EM_TILEPRO 188 /* Tilera TILEPro */ #define EM_MICROBLAZE 189 /* Xilinx MicroBlaze */ -- ldv