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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 088CFC7115B for ; Wed, 18 Jun 2025 17:44:32 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 6EA8C10E8F1; Wed, 18 Jun 2025 17:44:31 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="RUAq9iNP"; dkim-atps=neutral Received: from tor.source.kernel.org (tor.source.kernel.org [172.105.4.254]) by gabe.freedesktop.org (Postfix) with ESMTPS id AD2A610E8EB; Wed, 18 Jun 2025 17:44:30 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 7E8F061F1F; Wed, 18 Jun 2025 17:44:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B86DBC4CEE7; Wed, 18 Jun 2025 17:44:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1750268667; bh=J3emUuMS2sP+fVu514LS2iE2SxNv9+tMuhs+QvDPSzI=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=RUAq9iNPBOvtBZ6kjZvzyDf3azz9pNEJrtV802b0Y+7oFzo46N+wIUNg/gUWuVYNv 0zTcE5vpf09zObs3MB5J0eo6OqIPMHS2hzU8M6zIhoCiDCJqMS64GU9M2cvpKemyE6 2cQfwsDPfUcwxAICjnnffdcOSRG7xmqYXPDVZgl7Mo2lPxi8/0fvmHvNSPg0dSTHSu uRRXbMuBmGgK+dW6FH4AGtLJYIu9K/KZlCp0EFVJQAiTuHA+H5PyIBduZh3y/5F0hn 36XXhmH+5bXNB865NML1afkhVnOFmu9mD/2qEx7ja97HEAcU+6YLo11U1bNdFcUrRV sQv648YcGy5eQ== Message-ID: Date: Wed, 18 Jun 2025 19:44:14 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v12 1/6] rust: enable `clippy::ptr_as_ptr` lint To: Miguel Ojeda Cc: Tamir Duberstein , Christian Brauner , David Gow , Greg Kroah-Hartman , Tejun Heo , Masahiro Yamada , Nathan Chancellor , Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , =?UTF-8?Q?Bj=C3=B6rn_Roy_Baron?= , Andreas Hindborg , Alice Ryhl , Trevor Gross , "Rafael J. Wysocki" , Brendan Higgins , Rae Moar , Bjorn Helgaas , Luis Chamberlain , Russ Weight , Rob Herring , Saravana Kannan , Abdiel Janulgue , Daniel Almeida , Robin Murphy , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , FUJITA Tomonori , Nicolas Schier , Frederic Weisbecker , Lyude Paul , Thomas Gleixner , Anna-Maria Behnsen , Benno Lossin , =?UTF-8?Q?Krzysztof_Wilczy=C5=84ski?= , John Stultz , Stephen Boyd , Lorenzo Stoakes , "Liam R. Howlett" , Breno Leitao , Viresh Kumar , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, rust-for-linux@vger.kernel.org, linux-kselftest@vger.kernel.org, kunit-dev@googlegroups.com, linux-pci@vger.kernel.org, linux-block@vger.kernel.org, devicetree@vger.kernel.org, dri-devel@lists.freedesktop.org, netdev@vger.kernel.org, linux-mm@kvack.org, linux-pm@vger.kernel.org, nouveau@lists.freedesktop.org References: <20250615-ptr-as-ptr-v12-0-f43b024581e8@gmail.com> <20250615-ptr-as-ptr-v12-1-f43b024581e8@gmail.com> From: Danilo Krummrich Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 6/18/25 6:45 PM, Miguel Ojeda wrote: > On Wed, Jun 18, 2025 at 3:54 PM Tamir Duberstein wrote: >> >> @Andreas Hindborg could you please have a look for configfs? >> >> @Rafael J. Wysocki @Viresh Kumar could you please have a look for cpufreq? > > Thanks Tamir. > > Christian, Danilo, David, Greg, Tejun: It would also be nice to get > Acked-by's for your bits. Thanks! For the whole series and the bits I maintain: Acked-by: Danilo Krummrich -- Independent from that, won't this potentially leave us with a lot of warnings from code that goes through other trees in the upcoming merge window? How do we deal with that?