From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 950B9E77197 for ; Thu, 9 Jan 2025 12:12:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=n+h8kv7GSyBvPQ65/SzquRuwn3Vp0xjXPFu1I29tY2o=; b=xFRPdAtZ5IoFmH uNq84Mmt96ZE6vQDgk0OttQzoWDlqkXzX1KP0kAwK7nfuxOBeSBxhLLtwS5peh363nnwW5nspCVyE jL7sTuJo/JAvTXEpks4FujncFDLs+TLs+WajzIaXZlQJWHFUjyv0/TbpXdUgW45SqfM8cgnuJo2H4 XK+aelGsGxyFLscZwGD6bjPwhErBlnKttdB5OAnSrMutI+/W5DYOkjpCCv1ds6Hfrn39P4MIhBMxH AJAbzG+sqR0uXZ0BQn2TYIfEfogUz/o71+ADimfCYcAuMiP1CXu1L6Rtas4FDTasc7mFO7cGgdY1H nH28xDZf+uoCuIUGPhsQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1tVrPA-0000000Bodg-0LxO; Thu, 09 Jan 2025 12:12:52 +0000 Received: from vmicros1.altlinux.org ([194.107.17.57]) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1tVrNT-0000000BoNg-3sso; Thu, 09 Jan 2025 12:11:10 +0000 Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id D569472C8F5; Thu, 9 Jan 2025 15:11:02 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id C39FF7CCB3A; Thu, 9 Jan 2025 14:11:02 +0200 (IST) Date: Thu, 9 Jan 2025 14:11:02 +0200 From: "Dmitry V. Levin" To: Oleg Nesterov Cc: Eugene Syromyatnikov , Mike Frysinger , Renzo Davoli , Davide Berardi , strace-devel@lists.strace.io, Vineet Gupta , Russell King , Catalin Marinas , Will Deacon , Guo Ren , Brian Cain , Huacai Chen , WANG Xuerui , Thomas Bogendoerfer , "James E.J. Bottomley" , Helge Deller , linux-snps-arc@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-csky@vger.kernel.org, linux-hexagon@vger.kernel.org, loongarch@lists.linux.dev, linux-mips@vger.kernel.org, linux-parisc@vger.kernel.org Subject: Re: [PATCH 2/6] syscall.h: add syscall_set_arguments() on remaining HAVE_ARCH_TRACEHOOK arches Message-ID: <20250109121102.GA16212@strace.io> References: <20250107230153.GA30560@strace.io> <20250107230418.GB30633@strace.io> <20250109120453.GC26424@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20250109120453.GC26424@redhat.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20250109_041108_149534_F4356CCC X-CRM114-Status: UNSURE ( 7.59 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-snps-arc@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Linux on Synopsys ARC Processors List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-snps-arc" Errors-To: linux-snps-arc-bounces+linux-snps-arc=archiver.kernel.org@lists.infradead.org On Thu, Jan 09, 2025 at 01:04:53PM +0100, Oleg Nesterov wrote: > On 01/08, Dmitry V. Levin wrote: > > > > arch/arc/include/asm/syscall.h | 14 +++++++++ > > arch/arm/include/asm/syscall.h | 13 ++++++++ > > arch/arm64/include/asm/syscall.h | 13 ++++++++ > > arch/csky/include/asm/syscall.h | 13 ++++++++ > > arch/hexagon/include/asm/syscall.h | 7 +++++ > > arch/loongarch/include/asm/syscall.h | 8 +++++ > > arch/mips/include/asm/syscall.h | 46 ++++++++++++++++++++++++++++ > > arch/parisc/include/asm/syscall.h | 12 ++++++++ > > Confused... arch/x86 needs syscall_set_arguments() too ? Sure, all HAVE_ARCH_TRACEHOOK architectures need them, but most of these architectures already provide them since the previous patch in the series: [PATCH 1/6] Revert "arch: remove unused function syscall_set_arguments()" -- ldv _______________________________________________ linux-snps-arc mailing list linux-snps-arc@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-snps-arc