From nobody Fri Oct 10 21:13:59 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 72186248F6F; Thu, 12 Jun 2025 13:41:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749735701; cv=none; b=Sb/N4mxC8Bd7YYxJV3jNM3ZEYcdSKyhJJ23x5zCUef8J6Ph1rVfxEvkPI269Ch4+TM7rh4ZvaYLn7i6BTGP0MLszB3IOS0pz90EJcLJYQq5sZ1KEWOoDauJKAG+z4xTcEg+cHHNzNAxE6TVstgHkt+Uuj+Un76ziFiEgBgtHMJA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749735701; c=relaxed/simple; bh=1pNBoqfcOumx5Zb6O8muZgcXFYZBfhHDEKXQatZBLVg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=TwwlWXJJQgTSpgw/BV95iwrCKdyQ2vBMbDt5yXX5hX5iozpVDBjkH7Ui0lwK3+5hBKIudLTnC/Tib2COXs4/N87WKScomtEmGFl3erB4AP5IHk+poBW0sivaKxt5tGF/SFgdlH+Qbft2R8m3QeBkltYzEHCJqGaFFCQvRTUyB5k= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=cfUw60H5; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="cfUw60H5" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0755CC4CEEE; Thu, 12 Jun 2025 13:41:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1749735701; bh=1pNBoqfcOumx5Zb6O8muZgcXFYZBfhHDEKXQatZBLVg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cfUw60H5DAvXwPfxYbtRRrJuUQ9Gb0MYNNprLXlwZY4b/XZgTQkKgR3B5zHzt+x91 Mso4IapG6iSAK4wb6SCE7qJM72CX5Eg+JwrWnQFA4j67yxGGufSPhtiS+kBHwxH/2z nLvLqOUl3Ndq0fWbzlT1LZGF+lx4laYHKSLh8eXR2Xfv2UZwyLmv1nHFp/aa8Pgdym 5UjUEwXge9dUr0NxoLHSDjSsiB1fjuvgVRV3OCwIbkhujI5AFmnZ6BYFPZaKnWmtM3 QE8elo8nPBkiPDlTkVazUDXblLkitZ2+WMbXRKO71Gp4IXj+C0WSl3IRp+ltoFJLBD 9ODcEGBIsP2ng== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1uPiBX-000000053q1-0XRv; Thu, 12 Jun 2025 15:41:39 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Mauro Carvalho Chehab , "Akira Yokosawa" , "Breno Leitao" , "David S. Miller" , "Donald Hunter" , "Eric Dumazet" , "Ignacio Encinas Rubio" , "Jan Stancek" , "Marco Elver" , "Mauro Carvalho Chehab" , "Paolo Abeni" , "Ruben Wauters" , "Shuah Khan" , joel@joelfernandes.org, linux-kernel-mentees@lists.linux.dev, linux-kernel@vger.kernel.org, lkmm@lists.linux.dev, netdev@vger.kernel.org, peterz@infradead.org, stern@rowland.harvard.edu Subject: [PATCH v2 1/2] docs: conf.py: add include_pattern to speedup Date: Thu, 12 Jun 2025 15:41:30 +0200 Message-ID: <62f2de3a195dc47ba6919721e460a8dd7ae95bc3.1749735022.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" Now that we have a parser for yaml, use include_pattern, adding just yaml files from the only directory we currently process. Signed-off-by: Mauro Carvalho Chehab --- Documentation/conf.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Documentation/conf.py b/Documentation/conf.py index b8668bcaf090..60e6998e49e1 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -222,10 +222,13 @@ language =3D 'en' =20 # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. +include_patterns =3D [ + '**.rst', + 'netlink/specs/*.yaml', +] + exclude_patterns =3D [ 'output', - 'devicetree/bindings/**.yaml', - 'netlink/*.yaml', ] =20 # The reST default role (used for this markup: `text`) to use for all --=20 2.49.0 From nobody Fri Oct 10 21:13:59 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7223424A041; Thu, 12 Jun 2025 13:41:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749735701; cv=none; b=duvHiUO13uwhrn6k71zltFsx4qg/LPtdhjGQkzR8/NfKzG2CxW2Vw6GSlavzF4YdKGOueXrJDjGKeGCd62YP+LwPs3UfyfhIcj5YOcOsCIfPPGgdUFHOCFHENizHOF1pM9Qe/R5KLBK0bzyXVkXE6tbIZ0Z5CiGZTFK0OUoepzg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749735701; c=relaxed/simple; bh=00F9KG3FuikbC/77I/aVEWzxRtC/68GGYQsrs3gqu00=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OMca1FWN9mu4wNWJkdeyIwvUHYPRdfyubtt/5zRkb8EA7q7/du8XTXxaKwITOKTp2xNr0PIt3fCWNSjFi0wIlE/M9KyflIUqT++zX7F06kClLVxCLS5Vrnl833g6d/D8LWw4r15DpHAh+ykfRxFKPPPF7WhqrGsVQvs5PWhyAx0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=LzbTTgxU; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="LzbTTgxU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 05222C4CEEB; Thu, 12 Jun 2025 13:41:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1749735701; bh=00F9KG3FuikbC/77I/aVEWzxRtC/68GGYQsrs3gqu00=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LzbTTgxUuP3N9AVCRYohTi5X5zxnC4JJWwzo5hbc9qI+2nLTu2JdJ3eVnGYNKN6vd 1aPFPIHqp1mhVOX+tyi5+7rY3ADXg/Ra08EFgPpUsrZGc/QT5j1u4LjkydkaHzGFvB ZMGNWa3mYIMRkkHfg79O3Z6ohlP1VsDDAf36Qps+30Znr2me2B/y2YLJtQllxua3Uz kCHN44HlfS0+Tr7+1nskhL67R1w2xctfbBLCtuGoACQbAl634WA37rFpr5fuvOSJxi LVbqpCUmf2sBeDnz8y305ERbm0NzbP9aah3JIoSHNCxneNZTsZVlesgowt8f1AXWI9 jtYG9kkD/xyHA== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1uPiBX-000000053q5-0n9j; Thu, 12 Jun 2025 15:41:39 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Mauro Carvalho Chehab , "Akira Yokosawa" , "Breno Leitao" , "David S. Miller" , "Donald Hunter" , "Eric Dumazet" , "Ignacio Encinas Rubio" , "Jan Stancek" , "Marco Elver" , "Mauro Carvalho Chehab" , "Paolo Abeni" , "Ruben Wauters" , "Shuah Khan" , Jakub Kicinski , Simon Horman , joel@joelfernandes.org, linux-kernel-mentees@lists.linux.dev, linux-kernel@vger.kernel.org, lkmm@lists.linux.dev, netdev@vger.kernel.org, peterz@infradead.org, stern@rowland.harvard.edu Subject: [PATCH v2 2/2] docs: uapi: netlink: update netlink specs link Date: Thu, 12 Jun 2025 15:41:31 +0200 Message-ID: X-Mailer: git-send-email 2.49.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" With the recent parser_yaml extension, and the removal of the auto-generated ReST source files, the location of netlink specs changed. Update uAPI accordingly. Signed-off-by: Mauro Carvalho Chehab --- Documentation/userspace-api/netlink/index.rst | 2 +- Documentation/userspace-api/netlink/specs.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/userspace-api/netlink/index.rst b/Documentation/= userspace-api/netlink/index.rst index c1b6765cc963..83ae25066591 100644 --- a/Documentation/userspace-api/netlink/index.rst +++ b/Documentation/userspace-api/netlink/index.rst @@ -18,4 +18,4 @@ Netlink documentation for users. =20 See also: - :ref:`Documentation/core-api/netlink.rst ` - - :ref:`Documentation/networking/netlink_spec/index.rst ` + - :ref:`Documentation/netlink/specs/index.rst ` diff --git a/Documentation/userspace-api/netlink/specs.rst b/Documentation/= userspace-api/netlink/specs.rst index 1b50d97d8d7c..debb4bfca5c4 100644 --- a/Documentation/userspace-api/netlink/specs.rst +++ b/Documentation/userspace-api/netlink/specs.rst @@ -15,7 +15,7 @@ kernel headers directly. Internally kernel uses the YAML specs to generate: =20 - the C uAPI header - - documentation of the protocol as a ReST file - see :ref:`Documentation/= networking/netlink_spec/index.rst ` + - documentation of the protocol as a ReST file - see :ref:`Documentation/= netlink/specs/index.rst ` - policy tables for input attribute validation - operation tables =20 --=20 2.49.0