Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp3436629imu; Mon, 19 Nov 2018 16:17:22 -0800 (PST) X-Google-Smtp-Source: AJdET5fCOWgnZY28xNg8o6oVzAV6sMFM5n9OJ8wM6fbJfTaz6q+x8a+J1Nbi7E5s5haxIypEKrok X-Received: by 2002:a63:3204:: with SMTP id y4mr22042592pgy.41.1542673042543; Mon, 19 Nov 2018 16:17:22 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542673042; cv=none; d=google.com; s=arc-20160816; b=y0ZCjDGk0o8/adAGMV9hCgJPuHq1BSmv55+qgfCCGq0AFeFBbZIGooKYQ3gLz97P/a ZMpRc9Oo1inB6GvSXr9v8eL4oVN6xGkwKO/ucE13/iOyyw6uxiYhePpsomnVUN0RRDXk G0UsoPaLPwxqC2kMeO9QmRrMZrGH82xbjXD/0/X8+IBkerSl9oReQ9SceBR9sigVyvN6 VxutvkZgBXTwxD2wxfhhw5y1Lr2gy9VcdqCUBSoAB+1MbTwJmPalHeBMYroAgr19OW88 SYurls0KA3hHxesmmltrER3WpKHVVfuk6lhDxeh+LOur225krLs8tJKjjwAIKYWnqvZ2 wgrA== 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=OMJoAl9Jp8+A8r1k6WC+vQUCodzIYEp2bkW3fODk9Qc=; b=cfT64/MYlWxu58E3E2S63XC+rxYduN5kJgZk77Tk23wFThDDWpPvKKM1GKj2oW3+f6 vX6+ZwCljZ4AgovMf8gJsXT4vQ53CA6Cx6gO27Jqn/ccHELRcBxtX6lue501SlsXXRQ3 mPpSEi/rwauNKPcfFVaEP3MB3aSDLjGl0KAa8yAWx7uyvRUjdaDa2uE97h/sKVylgZD3 jrsffXcAdqcSuBqqa67jUqBXhx9co/FLaKVhbn5O2JY2WlDaqCYBEs3CDAHidYV71dxb +pg+9fHvd9oEy/YL4lp9uoLh/By11085yVUUv4+C6YLXtr4WB4j0PQiz6pDodG1zunV5 v/cw== 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 p14si8805919pgf.52.2018.11.19.16.17.07; Mon, 19 Nov 2018 16:17:22 -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 S1732348AbeKTKmU (ORCPT + 99 others); Tue, 20 Nov 2018 05:42:20 -0500 Received: from vmicros1.altlinux.org ([194.107.17.57]:55114 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726614AbeKTKmU (ORCPT ); Tue, 20 Nov 2018 05:42:20 -0500 Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 592A472CA5E; Tue, 20 Nov 2018 03:16:04 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id 4ECA77CD1FF; Tue, 20 Nov 2018 03:16:04 +0300 (MSK) Date: Tue, 20 Nov 2018 03:16:04 +0300 From: "Dmitry V. Levin" To: Andy Lutomirski , Yoshinori Sato , Paul Moore , Eric Paris Cc: Elvira Khabirova , uclinux-h8-devel@lists.sourceforge.jp, linux-audit@redhat.com, linux-kernel@vger.kernel.org Subject: [PATCH v2 09/15] h8300: define syscall_get_arch() Message-ID: <20181120001604.GI11387@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 syscall_get_arch() is required to be implemented on all architectures in order to extend the generic ptrace API with PTRACE_GET_SYSCALL_INFO request. Signed-off-by: Dmitry V. Levin --- v2: unchanged since v1 arch/h8300/include/asm/syscall.h | 5 +++++ include/uapi/linux/audit.h | 1 + 2 files changed, 6 insertions(+) diff --git a/arch/h8300/include/asm/syscall.h b/arch/h8300/include/asm/syscall.h index 924990401237..699664a0b1be 100644 --- a/arch/h8300/include/asm/syscall.h +++ b/arch/h8300/include/asm/syscall.h @@ -8,6 +8,7 @@ #include #include #include +#include static inline int syscall_get_nr(struct task_struct *task, struct pt_regs *regs) @@ -47,6 +48,10 @@ syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, } } +static inline int syscall_get_arch(void) +{ + return AUDIT_ARCH_H8300; +} /* Misc syscall related bits */ diff --git a/include/uapi/linux/audit.h b/include/uapi/linux/audit.h index 72aeea0a740d..d7fa1ba8dc82 100644 --- a/include/uapi/linux/audit.h +++ b/include/uapi/linux/audit.h @@ -385,6 +385,7 @@ enum { #define AUDIT_ARCH_C6XBE (EM_TI_C6000) #define AUDIT_ARCH_CRIS (EM_CRIS|__AUDIT_ARCH_LE) #define AUDIT_ARCH_FRV (EM_FRV) +#define AUDIT_ARCH_H8300 (EM_H8_300) #define AUDIT_ARCH_I386 (EM_386|__AUDIT_ARCH_LE) #define AUDIT_ARCH_IA64 (EM_IA_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_M32R (EM_M32R) -- ldv