From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 695BF1D7E42; Mon, 20 Oct 2025 10:07:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760954870; cv=none; b=soUWl4NbpgJ7G2Noz8HV76CZeE8ZN3N8T612RZdOzyUAATeDvyeWEHCaoHsvUNhOmroPlZHNzTQozoI6A7M8S5LHnnxhdLbTCsuKDnw9x7morTgIhOO7V+cZ8IyeTBv/j3mDuu24mG6uJXkmP4gwwHKzImNyQTUUHeNjuzMIT74= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760954870; c=relaxed/simple; bh=0M7psceSKNec+BNMfLQd3dOi35kp0PFPiLzND396b0c=; h=Mime-Version:Content-Type:Date:Message-Id:Subject:Cc:To:From: References:In-Reply-To; b=adubLhPXCdyZcVDGImFswGH+gN85/Ciqi2im1FGRStw8oB/M7XtPkqOp1HAaIPkR5SfQeB7aDOHtkOVP9oZFQeRSmOZrArnjET5cp9iMb4cYKVZYI9rTC5GaAuTHXUQ00wgx5sUUlulx1XuOGhmT+NRdtZZ55Y2zZJ7MdHVslaY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bWTQj9Hu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bWTQj9Hu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 00B68C4CEF9; Mon, 20 Oct 2025 10:07:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1760954869; bh=0M7psceSKNec+BNMfLQd3dOi35kp0PFPiLzND396b0c=; h=Date:Subject:Cc:To:From:References:In-Reply-To:From; b=bWTQj9Huar+h/bXT8YwORnYlSdYowu0LZCXGtiX9QGAK9oR0xV4XoUw/SzQ/PMOBy Z8fxL/cWMhvs5YC87okar1saPvO/0Q2ABk8pYCJsk1xEMnE13ZxGHfOeMIQGtRYpUO 1pQqeq/4jyZsTqWpnYZIYBPLwVUGS1WVajUS4jRBcTN/7XqfiUEf/TC87BwXtIVKhm ei6O6AdN8C9biKuJ9A3bb6wSgX3eJBB9lE9ITo0qdQsVlYXy4vyA+XxAhi3QRKroCL n6BrOLAmsvCetS8unVKIjnh4plrEHEp4gl9T1b5IQ0RGRNUQibnPXzhek2vftL7SkJ c9rfVWEPYcB9g== Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Mon, 20 Oct 2025 12:07:44 +0200 Message-Id: Subject: Re: [PATCH] gpu: nova-core: replace wait_on with kernel equivalents Cc: "David Airlie" , "Simona Vetter" , "Alice Ryhl" , "Miguel Ojeda" , "Alex Gaynor" , "Boqun Feng" , "Gary Guo" , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , "Benno Lossin" , "Andreas Hindborg" , "Trevor Gross" , "John Hubbard" , "Alistair Popple" , "Joel Fernandes" , "Timur Tabi" , "Edwin Peer" , , , , To: "Alexandre Courbot" From: "Danilo Krummrich" References: <20251020-nova_wait_on-v1-1-2eb87fb38d14@nvidia.com> In-Reply-To: <20251020-nova_wait_on-v1-1-2eb87fb38d14@nvidia.com> On Mon Oct 20, 2025 at 8:09 AM CEST, Alexandre Courbot wrote: > wait_on was a temporary helper function waiting for a kernel crate > equivalent. > > Now that read_poll_timeout and fsleep are available, use them and remove > wait_on. > > Signed-off-by: Alexandre Courbot Acked-by: Danilo Krummrich