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 7FBACCA0FE7 for ; Tue, 26 Aug 2025 19:54:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:In-Reply-To: Content-Transfer-Encoding:Content-Type: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=3Ioqpg7Zg3T78ff1eAE0JZikPJPCGtibo8SLuhEEzE4=; b=zBxeUn+Z3VwrObt1WzQM6B032u xROJJ4NQBz2MF0n+LBXJ8C46vY2Fcgh0B0900YwP9jj6oRBpT/inkW3pswWZIEwxubixh2l/MsJdL zS3g7InpfBYj0QvtBVrd3tBfzrHWyxReJzwRMNDMqhzxOMNy/bC2Hz4GdAM4rQld410lT08hsdl5Q IipovBHr0N6HShuBv/UuyklEwI80So33hWO8ivBoCAiO9lS8NMZZwxP8MkMgA5hedCPiaTzl3IxLb 01nIXppCwtSmCdVdDraNsDsKAWzsUy4zZYI+K01qXcDZJeszQO+Yvv7h4gw6KvoYuij27As8UAHrq c2xiil8A==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1uqzkB-0000000D2yi-0x5l; Tue, 26 Aug 2025 19:54:11 +0000 Received: from tor.source.kernel.org ([172.105.4.254]) by bombadil.infradead.org with esmtps (Exim 4.98.2 #2 (Red Hat Linux)) id 1uqzS2-0000000D0Xb-3QSD for linux-arm-kernel@lists.infradead.org; Tue, 26 Aug 2025 19:35:26 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 42A50601F5; Tue, 26 Aug 2025 19:35:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 60F3CC4CEF1; Tue, 26 Aug 2025 19:35:24 +0000 (UTC) Date: Tue, 26 Aug 2025 20:35:27 +0100 From: Catalin Marinas To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Willy Tarreau , Will Deacon , Shuah Khan , Mark Brown , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH 6/7] kselftest/arm64: tpidr2: Switch to waitpid() over wait4() Message-ID: References: <20250821-nolibc-enosys-v1-0-4b63f2caaa89@weissschuh.net> <20250821-nolibc-enosys-v1-6-4b63f2caaa89@weissschuh.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20250821-nolibc-enosys-v1-6-4b63f2caaa89@weissschuh.net> X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Thu, Aug 21, 2025 at 05:40:37PM +0200, Thomas Weißschuh wrote: > wait4() is deprecated, non-standard and about to be removed from nolibc. > > Switch to the equivalent waitpid() call. > > Signed-off-by: Thomas Weißschuh Acked-by: Catalin Marinas