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 53F1AC83F26 for ; Wed, 30 Jul 2025 13:07:35 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id BE96610E683; Wed, 30 Jul 2025 13:07:34 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="DR8jBGJ/"; dkim-atps=neutral Received: from sea.source.kernel.org (sea.source.kernel.org [172.234.252.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id E1B2810E683 for ; Wed, 30 Jul 2025 13:07:32 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sea.source.kernel.org (Postfix) with ESMTP id C8F7B4186B; Wed, 30 Jul 2025 13:07:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2909BC4CEF6; Wed, 30 Jul 2025 13:07:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1753880852; bh=pxUeJv29yRg6Dx7iPk1Ji2QVfn9F9xAJgdgxpSSJiqw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DR8jBGJ/KsozFTtd9LNrKeQK8dpxYwyg23wiKvPFMDGFGh9C+74tsr8/hoz6iPAc1 IYwmcYgd7iqjpW31MV/H9gXtTZhYlVTNcBEwi2IwBCUo5Je61Eq2lmojumgMx8naZo mbWQXxTK8AdmZSpTZ83ddmdURTVIsBGmEFEw5Jb8lRGtdqipQmV2dsq19tydBFyUCp N2MnJueXLfT8wKpdwyJpM/AoSgkFrnu960kO1YNF+evu6MwJNVI17l2vbvfDPg2Zdj URVvZ3aUYG/E8LeumNfLjBnV3HZpUhzzVAJtf917AiTzfJiYaEM3Oe8ahkClNZMhna O5RyRRymlOHuw== From: Miguel Ojeda To: Miguel Ojeda , Alex Gaynor , Andreas Hindborg , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter Cc: Boqun Feng , Gary Guo , =?UTF-8?q?Bj=C3=B6rn=20Roy=20Baron?= , Benno Lossin , Alice Ryhl , Trevor Gross , Danilo Krummrich , rust-for-linux@vger.kernel.org, linux-block@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, patches@lists.linux.dev Subject: [PATCH 1/3] rust: block: fix `srctree/` links Date: Wed, 30 Jul 2025 15:07:14 +0200 Message-ID: <20250730130716.3278285-2-ojeda@kernel.org> In-Reply-To: <20250730130716.3278285-1-ojeda@kernel.org> References: <20250730130716.3278285-1-ojeda@kernel.org> MIME-Version: 1.0 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" This `srctree/` link pointed to a file with an underscore, but the header used a dash instead. Thus fix it. This cleans a future warning that will check our `srctree/` links. Fixes: 3253aba3408a ("rust: block: introduce `kernel::block::mq` module") Signed-off-by: Miguel Ojeda --- rust/kernel/block/mq/gen_disk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/kernel/block/mq/gen_disk.rs b/rust/kernel/block/mq/gen_disk.rs index cd54cd64ea88..e1af0fa302a3 100644 --- a/rust/kernel/block/mq/gen_disk.rs +++ b/rust/kernel/block/mq/gen_disk.rs @@ -3,7 +3,7 @@ //! Generic disk abstraction. //! //! C header: [`include/linux/blkdev.h`](srctree/include/linux/blkdev.h) -//! C header: [`include/linux/blk_mq.h`](srctree/include/linux/blk_mq.h) +//! C header: [`include/linux/blk-mq.h`](srctree/include/linux/blk-mq.h) use crate::block::mq::{raw_writer::RawWriter, Operations, TagSet}; use crate::{bindings, error::from_err_ptr, error::Result, sync::Arc}; -- 2.50.1