From patchwork Mon Apr 15 23:44:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Dmitry V. Levin" X-Patchwork-Id: 10901733 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 7996A14DB for ; Mon, 15 Apr 2019 23:44:27 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 61397285A6 for ; Mon, 15 Apr 2019 23:44:27 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 527BF286C4; Mon, 15 Apr 2019 23:44:27 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 72AA6285A6 for ; Mon, 15 Apr 2019 23:44:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727929AbfDOXoZ (ORCPT ); Mon, 15 Apr 2019 19:44:25 -0400 Received: from vmicros1.altlinux.org ([194.107.17.57]:38524 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727214AbfDOXoY (ORCPT ); Mon, 15 Apr 2019 19:44:24 -0400 Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 9935072CC61; Tue, 16 Apr 2019 02:44:22 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id 8E8897CC6FF; Tue, 16 Apr 2019 02:44:22 +0300 (MSK) Date: Tue, 16 Apr 2019 02:44:22 +0300 From: "Dmitry V. Levin" To: Andrew Morton Cc: Paul Burton , Elvira Khabirova , Eugene Syromyatnikov , Ralf Baechle , James Hogan , Oleg Nesterov , Andy Lutomirski , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH linux-next v10 3/7] mips: define syscall_get_error() Message-ID: <20190415234422.GC9384@altlinux.org> References: <20190415234307.GA9364@altlinux.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20190415234307.GA9364@altlinux.org> Sender: linux-mips-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mips@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP syscall_get_error() is required to be implemented on all architectures in addition to already implemented syscall_get_nr(), syscall_get_arguments(), syscall_get_return_value(), and syscall_get_arch() functions in order to extend the generic ptrace API with PTRACE_GET_SYSCALL_INFO request. Acked-by: Paul Burton Cc: Elvira Khabirova Cc: Eugene Syromyatnikov Cc: Ralf Baechle Cc: James Hogan Cc: Oleg Nesterov Cc: Andy Lutomirski Cc: linux-mips@vger.kernel.org Signed-off-by: Dmitry V. Levin --- Notes: v10: unchanged v9: unchanged v8: unchanged v7: added Acked-by v6: unchanged v5: initial revision arch/mips/include/asm/syscall.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/mips/include/asm/syscall.h b/arch/mips/include/asm/syscall.h index acf80ae0a430..83bb439597d8 100644 --- a/arch/mips/include/asm/syscall.h +++ b/arch/mips/include/asm/syscall.h @@ -89,6 +89,12 @@ static inline unsigned long mips_get_syscall_arg(unsigned long *arg, unreachable(); } +static inline long syscall_get_error(struct task_struct *task, + struct pt_regs *regs) +{ + return regs->regs[7] ? -regs->regs[2] : 0; +} + static inline long syscall_get_return_value(struct task_struct *task, struct pt_regs *regs) {