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 AC66DCD3427 for ; Tue, 5 May 2026 20:11:04 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1741D10E46F; Tue, 5 May 2026 20:11:04 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="swmayGhQ"; 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 F2F4A10EC12 for ; Tue, 5 May 2026 20:11:02 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 2D6C660181; Tue, 5 May 2026 20:11:02 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9CB47C2BCB4; Tue, 5 May 2026 20:10:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778011861; bh=gOs0o/TFscQxi9grZd1anD57wA4XSsfTcgDVQxqV7Ss=; h=Date:To:From:Subject:Cc:References:In-Reply-To:From; b=swmayGhQHSW6VEqPPE5oVPeWKIeC86o7p6C9cV2r+vHGDeIs4U/Hk0Jknnqp4+ER0 xiBTtrl4lY1TV6q3/GFUr/cI9tZaFmz572hac3FFKJErCPMuePcTu9ZH5jVRNjOR/z zwumGJn9cnob7x9gC8A7P0HbpW8hLQnF4bp2/eKSS7zbAbjUjdrdyzu/AuIzeWb2G3 RTe4H40vk9wwQWrTtoRl0fuJfqOH8uzq2uvBjPyBOJC9yGbk05fcVoarurytfd8MAj lKZPPRdMugQ6ZLxA5cvseyW1ppajkauczS9v4hUTFji4DlIM74zjBcp7+/bojj1b4F 1iBZMPtQMnbzw== Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Tue, 05 May 2026 22:10:54 +0200 Message-Id: To: "Gary Guo" From: "Danilo Krummrich" Subject: Re: [PATCH v2 1/3] rust: alloc: add Box::zeroed() Cc: "Alice Ryhl" , , , , , , , , , , , , , , , , , References: <20260505152400.3905096-1-dakr@kernel.org> <20260505152400.3905096-2-dakr@kernel.org> In-Reply-To: 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 Tue May 5, 2026 at 10:06 PM CEST, Gary Guo wrote: > On Tue May 5, 2026 at 9:04 PM BST, Danilo Krummrich wrote: >> On Tue May 5, 2026 at 5:48 PM CEST, Alice Ryhl wrote: >>> I suspect some of these imports can be removed when you add the prelude= . >> >> Yes, but I want to convert the imports separately, so keeping the change >> minimal. > > So far we've been asking people to convert import styles whenever imports= are > being touched. What's the reason for doing that in this specific case? I will take this through the driver-core tree as a dependency; the import u= pdate for the alloc module will go through the alloc tree. A minimal change avoid= s unnecessary conflicts.