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 301F0D778AC for ; Fri, 23 Jan 2026 18:23:57 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 8ACFD10E2DC; Fri, 23 Jan 2026 18:23:56 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="MfgSPXTI"; 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 45A3D10E2DC for ; Fri, 23 Jan 2026 18:23:56 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 26063601F2; Fri, 23 Jan 2026 18:23:55 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3DE70C4CEF1; Fri, 23 Jan 2026 18:23:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769192634; bh=xMknSNPfapOmyGhFdWUQtYjQxvVgwdk57Zk5hXGoEFw=; h=Date:To:From:Subject:Cc:References:In-Reply-To:From; b=MfgSPXTITyA2bOwiNTMe1Ca+STpca5E74oUtGsXYxX2radeKM9ZoCpaEs6Lt1gi/1 pBmuTM/t9f4E9S7Nnv7t1VkDDEQiYLt3StJkWm3q+C7xdlvZc1DZq13BbztpQfOpF4 FrvY0WWr+RZ8bOrrS90HUPpoBdut7iXsdmKnJcQFPkrcYhaNsSueJ+Xg0V90iqlbIj annLjOmM9q0/kuIp9ORMpMueA3tTkz0b8JBBe5PcGx73blU62MSO8R9dHyToISxRJV Wn2bp0K8LIroOrOSd7mvUKje2NpydRpXpsJERUneCf2iPdMzwsLsIynqEesUIEm3/b h0aAkrnZX8pUg== Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Fri, 23 Jan 2026 19:23:51 +0100 Message-Id: To: "Lyude Paul" From: "Danilo Krummrich" Subject: Re: [PATCH] rust/drm: Fix Registration::{new,new_foreign_owned}() docs Cc: , , , "Miguel Ojeda" , "Simona Vetter" , "Alice Ryhl" , "David Airlie" References: <20260122221037.3462081-1-lyude@redhat.com> In-Reply-To: <20260122221037.3462081-1-lyude@redhat.com> 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 Thu Jan 22, 2026 at 11:10 PM CET, Lyude Paul wrote: > Looks like we've actually had a malformed rustdoc reference in the rustdo= cs > for Registration::new_foreign_owned() for a while that, when fixed, still > couldn't resolve properly because it refers to a private item. > > This is probably leftover from when Registration::new() was public, so dr= op > the documentation from that function and fixup the documentation for > Registration::new_foreign_owned(). > > Signed-off-by: Lyude Paul I'd add a Fixes: tag for this, since it's user facing documentation. Acked-by: Danilo Krummrich