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 X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7F64FC433DF for ; Sun, 5 Jul 2020 20:30:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6942C20715 for ; Sun, 5 Jul 2020 20:30:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728330AbgGEUaj (ORCPT ); Sun, 5 Jul 2020 16:30:39 -0400 Received: from ms.lwn.net ([45.79.88.28]:51678 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728244AbgGEUaj (ORCPT ); Sun, 5 Jul 2020 16:30:39 -0400 Received: from lwn.net (localhost [127.0.0.1]) (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 3E989823; Sun, 5 Jul 2020 20:30:39 +0000 (UTC) Date: Sun, 5 Jul 2020 14:30:38 -0600 From: Jonathan Corbet To: Luc Van Oostenryck Cc: linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] doc: add link to sparse's home page/internal docs Message-ID: <20200705143038.44091487@lwn.net> In-Reply-To: <20200628095034.69520-1-luc.vanoostenryck@gmail.com> References: <20200626112349.1292a654@lwn.net> <20200628095034.69520-1-luc.vanoostenryck@gmail.com> Organization: LWN.net MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 28 Jun 2020 11:50:34 +0200 Luc Van Oostenryck wrote: > Sparse's home page used to be a wiki (sparse.wiki.kernel.org) > but this wiki only contained a short intro and the release notes. > But nowadays, sparse's main page is sparse.docs.kernel.org, > which contains all what was in the wiki but also other documentation, > mainly oriented about sparse's internals. > > So, add a link to this in the kernel documentation. > > Signed-off-by: Luc Van Oostenryck > --- > Documentation/dev-tools/sparse.rst | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/Documentation/dev-tools/sparse.rst b/Documentation/dev-tools/sparse.rst > index 6f4870528226..e20b8b8b78ed 100644 > --- a/Documentation/dev-tools/sparse.rst > +++ b/Documentation/dev-tools/sparse.rst > @@ -9,6 +9,8 @@ Sparse is a semantic checker for C programs; it can be used to find a > number of potential problems with kernel code. See > https://lwn.net/Articles/689907/ for an overview of sparse; this document > contains some kernel-specific sparse information. > +More information on sparse, mainly about its internals, can be found in > +its official pages at https://sparse.docs.kernl.org. Applied, thanks. jon