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=-11.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_2 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 44752C4727E for ; Fri, 25 Sep 2020 07:32:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E861723600 for ; Fri, 25 Sep 2020 07:32:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601019135; bh=IoufJd/unL5ddJzTrngS83s9J3bqPwyXQ5EPjYOcYlw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=tcobD8Ffu+kY+CZr2lXebObZ9es9iRefLuaPJ6fHpxoVx7F554pG93evaJUcyPt2O aGJ5NPvUu1mX/FgX3WbihNXgx5/zLvArg+hgcTpj4miyHtM5KqrY2QcGE1Hv4cSy4g p+z7wJsttjIfmY4NyXj6zDW4Qq75dLOsvstX0S2g= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727401AbgIYHcL (ORCPT ); Fri, 25 Sep 2020 03:32:11 -0400 Received: from mail.kernel.org ([198.145.29.99]:46624 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727201AbgIYHcJ (ORCPT ); Fri, 25 Sep 2020 03:32:09 -0400 Received: from coco.lan (ip5f5ad5bf.dynamic.kabel-deutschland.de [95.90.213.191]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 818572311B; Fri, 25 Sep 2020 07:32:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601019128; bh=IoufJd/unL5ddJzTrngS83s9J3bqPwyXQ5EPjYOcYlw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=mdW9CaZT6xUuqHDPKcn8zjB4tIwp3pIi1go993fXEbKmJyI3RMnK1vRIk/El1qFwk bfWkOlF7Hfm/4zgEM3ZS6GGziR+oXePk9bQfL4ShgOLYRSa2ngEbW7YNKeiOn4BJp7 UYvvgC6gIoNvn507kPTjdpJ4wq/YFin1NJZXzd4Y= Date: Fri, 25 Sep 2020 09:31:58 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: linux-kernel@vger.kernel.org, Jonathan Corbet , Niklas =?UTF-8?B?U8O2ZGVybHVuZA==?= , Alexandre Courbot , Arnd Bergmann , Boris Brezillon , Ezequiel Garcia , Hans Verkuil , Helen Koike , Jacopo Mondi , Jernej Skrabec , Jian-Jia Su , Laurent Pinchart , Mauro Carvalho Chehab , Michael Tretter , Paul Kocialkowski , Philipp Zabel , Randy Dunlap , Ricardo Ribalda , Sakari Ailus , Sean Young , Sergey Senozhatsky , Tomasz Figa , linux-media@vger.kernel.org Subject: Re: [PATCH v3 0/8] Improve support for building docs with Sphinx 3.1+ Message-ID: <20200925093158.2b605cc4@coco.lan> In-Reply-To: References: X-Mailer: Claws Mail 3.17.6 (GTK+ 2.24.32; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org Em Fri, 25 Sep 2020 08:30:38 +0200 Mauro Carvalho Chehab escreveu: > Sphinx 3.x new c domain code broke the doc build on several ways: > > - it broke the cdomains.py extension that were giving namespace > support for C references; > - it broke the automarkup script; > - it broke c:type references that kernel-doc and other parts of the > kernel were using to do cross-references with C declarations. > > This series address only part of those issues. It halves the number > of warnings produced when Spinx 3.x is used. Yet, we still > have 1.7 K warnings. At least some of the warnings seem to be due to some issues at Sphinx 3.x. I opened an issue to Sphinx upstream: https://github.com/sphinx-doc/sphinx/issues/8241 Thanks, Mauro