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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 73828C0032E for ; Mon, 23 Oct 2023 02:39:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233195AbjJWCjK (ORCPT ); Sun, 22 Oct 2023 22:39:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36008 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229484AbjJWCjI (ORCPT ); Sun, 22 Oct 2023 22:39:08 -0400 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 937B513E; Sun, 22 Oct 2023 19:39:06 -0700 (PDT) Received: from localhost (mdns.lwn.net [45.79.72.68]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 445E460A; Mon, 23 Oct 2023 02:39:06 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 445E460A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1698028746; bh=349s1fTyTzvEv7PXdqKIzZTIMuQ6igSkQHAALwkx+Uo=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=SduO33Z2ChSY+cy9coi29Yv2WEjsbGSiS9sEsAvY4BH/IBZxl0WcLy8FlITachHLe DSDcJY5e9tKkXC6GxV+4zEnEG07/qq0Q+sSPX9B47hraSgF3ibUml+S3lHlGaoblfp Dz6gASMZYhevGhPDQh4rSw6ldfC5/OzQhJJ0GpOKvE5TFes9e7N7jUNijMEtAb8cWz a3RlrNbet0lLvrGOWoTh7VUJzWp0Y3ZsUNCmunL88rEmEaKU7DJFvxcFWQ4ZPB/fh1 t2BG5UNM1yRaJ1BsSN6bzdWx74Goc6lTeRhQjq+IK9AN0319XBWFDASJ2R7aYMKdBE xWdb+uJ9pl/hg== From: Jonathan Corbet To: Vegard Nossum , Mauro Carvalho Chehab Cc: linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, Vegard Nossum Subject: Re: [PATCH] docs: doc-guide: mention 'make refcheckdocs' In-Reply-To: <20231022184910.919201-1-vegard.nossum@oracle.com> References: <20231022184910.919201-1-vegard.nossum@oracle.com> Date: Sun, 22 Oct 2023 20:39:05 -0600 Message-ID: <87il6yjc52.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Vegard Nossum writes: > Add this to the section on fixing warnings. > > Cc: Mauro Carvalho Chehab > Cc: Jonathan Corbet > Signed-off-by: Vegard Nossum > --- > Documentation/doc-guide/contributing.rst | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/Documentation/doc-guide/contributing.rst b/Documentation/doc-guide/contributing.rst > index d4793826ad9a..662c7a840cd5 100644 > --- a/Documentation/doc-guide/contributing.rst > +++ b/Documentation/doc-guide/contributing.rst > @@ -138,6 +138,10 @@ times, but it's highly important. If we can actually eliminate warnings > from the documentation build, then we can start expecting developers to > avoid adding new ones. > > +In addition to warnings from the regular documentation build, you can also > +run ``make refcheckdocs`` to find references to nonexistent documentation > +files. Applied, thanks. jon