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 8287538A72C; Fri, 20 Mar 2026 11:43:54 +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=1774007034; cv=none; b=iXwdudP2HvJavSy5qoov0N26XZllic4ewa+8kWxbDxhq4dVMmRBJKQUMsxoKaD/ZVLxOfq2sLkX+UL1anUu4Eto0SALZQm2aKwN5tXhncD3WSx4UU8rJeD2xOVKP0+7X0zL05cSso9BSUUFTSkgkxdM6cTGrpC9VFywNPHb32cY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774007034; c=relaxed/simple; bh=Rp2R12YtoEPaPhn+6Glp5nodLFyhyQINVrjxcl6ZFPM=; h=Mime-Version:Content-Type:Date:Message-Id:Subject:Cc:To:From: References:In-Reply-To; b=ugtwTxuv4TC8CC2H7uW9N6UFVkm7PqpfSC/9zS8Oxtahz9UvZqpwTSirP46Wp+JXECZQe0mZh3DyxSmJdCbKQXTwuB3V5WBOxhi2oSG1G7ujaAM5gCKA3yFbjzOx6/O6PH8MVSFeM5iNkBjupNF4lXM/203ReZurI6JSxfogQ6E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ZNPBILJF; 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="ZNPBILJF" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B8D5AC4CEF7; Fri, 20 Mar 2026 11:43:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1774007034; bh=Rp2R12YtoEPaPhn+6Glp5nodLFyhyQINVrjxcl6ZFPM=; h=Date:Subject:Cc:To:From:References:In-Reply-To:From; b=ZNPBILJFImehQ5vsVgWdx2URfMRpRXVNIayv0g3/6SAM0zTgNAAe6pxgaEX9grMiL 2W9VUKVIIif2i4OUt3JzNeYyrwSFPFRq4NUsRr7sZ9antdizaXdJXaJBWZ1Wk3aP1B CvBZKtuMe5frdSdP5I0pc0yki3j9HmuVv3C+hZW22HAbxnvNIzX7kRkshngxgoUUAg lTLbKbnSW9ndNbOl4rkf4E5BUB0AinI7Zbfw8pfdOhNv/cWQAX3pHjPJUCPVUYgxOE P/4BIWURqQIQi28UddOpanvvytutODRQc8tRXwrfryBrPigFGzic8r93bfakdjRSFa PqWJDwaOue7ww== Precedence: bulk X-Mailing-List: rust-for-linux@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: Fri, 20 Mar 2026 12:43:47 +0100 Message-Id: Subject: Re: [PATCH v5 0/3] Implement Send and Sync for clk Cc: "Alice Ryhl" , "Michael Turquette" , "Maarten Lankhorst" , "Maxime Ripard" , "Drew Fustini" , "Guo Ren" , "Fu Wei" , =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= , "Michal Wilczynski" , "Viresh Kumar" , "Miguel Ojeda" , "Gary Guo" , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , "Benno Lossin" , "Andreas Hindborg" , "Trevor Gross" , "Daniel Almeida" , , , , , , "Boqun Feng" To: "Stephen Boyd" From: "Danilo Krummrich" References: <20260223-clk-send-sync-v5-0-181bf2f35652@google.com> In-Reply-To: <20260223-clk-send-sync-v5-0-181bf2f35652@google.com> Hi Stephen, On Mon Feb 23, 2026 at 11:08 AM CET, Alice Ryhl wrote: > The Clk type is thread-safe, so let's mark it as thread-safe in the type > system. This lets us get rid of hacks in drivers. > > For Stephen's clk tree. > > Signed-off-by: Alice Ryhl > --- > Changes in v5: > - Rebase on v7.0-rc1. > - Pick up Reviewed-by tags. > - Link to v4: https://lore.kernel.org/r/20260113-clk-send-sync-v4-0-712bc= 7d94a79@google.com > > Changes in v4: > - Pick up Reviewed-by tags. > - Link to v3: https://lore.kernel.org/r/20251218-clk-send-sync-v3-0-e48b2= e2f1eac@google.com > > Changes in v3: > - Rebase on v6.19-rc1. > - Pick up tags. > - Add fix for pwm driver as well. > - Link to v2: https://lore.kernel.org/r/20251020-clk-send-sync-v2-0-44ab5= 33ae084@google.com > > Changes in v2: > - Rebase on v6.18-rc1. > - Add patch to tyr driver. > - Link to v1: https://lore.kernel.org/r/20250904-clk-send-sync-v1-1-48d02= 3320eb8@google.com Alice has resent this over the past three cycles, but it hasn't been picked= up yet. Please let me know if there are any concerns -- otherwise, I plan to t= ake it through the drm-rust tree in a few days. Thanks, Danilo