2023-02-22 08:36:05

by Bagas Sanjaya

[permalink] [raw]
Subject: [PATCH v2] Documentation: bpf: Fix link to BTF doc

Ross reported broken link to BTF documentation
(Documentation/bpf/btf.rst) in Documentation/bpf/bpf_devel_QA.rst. The
link in question is written using external link syntax, with the target
refers to BTF doc in reST source (btf.rst), which doesn't exist in
resulting HTML output.

Fix the link by replacing external link syntax with simply writing out
the target doc, which the link will be generated to the correct HTML doc
target.

Link: https://lore.kernel.org/linux-doc/[email protected]/
Fixes: 6736aa793c2b5f ("selftests/bpf: Add general instructions for test execution")
Reported-by: Ross Zwisler <[email protected]>
Signed-off-by: Bagas Sanjaya <[email protected]>
---
Changes since v1 [1]:

* Reword patch description (I don't see external link semantics on
Sphinx documentation [2] when I submit v1).
* Drop the corresponding orphan target definition.
* Rebase on top of current bpf tree.

Ross, do you want to give a Reviewed-by or Acked-by?

[1]: https://lore.kernel.org/linux-doc/[email protected]/
[2]: https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#external-links

Documentation/bpf/bpf_devel_QA.rst | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Documentation/bpf/bpf_devel_QA.rst b/Documentation/bpf/bpf_devel_QA.rst
index 03d4993eda6f05..715f7321020f27 100644
--- a/Documentation/bpf/bpf_devel_QA.rst
+++ b/Documentation/bpf/bpf_devel_QA.rst
@@ -469,7 +469,7 @@ under test should match the config file fragment in
tools/testing/selftests/bpf as closely as possible.

Finally to ensure support for latest BPF Type Format features -
-discussed in `Documentation/bpf/btf.rst`_ - pahole version 1.16
+discussed in Documentation/bpf/btf.rst - pahole version 1.16
is required for kernels built with CONFIG_DEBUG_INFO_BTF=y.
pahole is delivered in the dwarves package or can be built
from source at
@@ -690,6 +690,5 @@ when:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/tools/testing/selftests/bpf/
.. _Documentation/dev-tools/kselftest.rst:
https://www.kernel.org/doc/html/latest/dev-tools/kselftest.html
-.. _Documentation/bpf/btf.rst: btf.rst

Happy BPF hacking!

base-commit: 345d24a91c79f408e355c8b7e873ccde0f097eea
--
An old man doll... just what I always wanted! - Clara



2023-02-22 18:55:20

by Ross Zwisler

[permalink] [raw]
Subject: Re: [PATCH v2] Documentation: bpf: Fix link to BTF doc

On Wed, Feb 22, 2023 at 03:35:30PM +0700, Bagas Sanjaya wrote:
> Ross reported broken link to BTF documentation
> (Documentation/bpf/btf.rst) in Documentation/bpf/bpf_devel_QA.rst. The
> link in question is written using external link syntax, with the target
> refers to BTF doc in reST source (btf.rst), which doesn't exist in
> resulting HTML output.
>
> Fix the link by replacing external link syntax with simply writing out
> the target doc, which the link will be generated to the correct HTML doc
> target.
>
> Link: https://lore.kernel.org/linux-doc/[email protected]/
> Fixes: 6736aa793c2b5f ("selftests/bpf: Add general instructions for test execution")
> Reported-by: Ross Zwisler <[email protected]>
> Signed-off-by: Bagas Sanjaya <[email protected]>
> ---
> Changes since v1 [1]:
>
> * Reword patch description (I don't see external link semantics on
> Sphinx documentation [2] when I submit v1).
> * Drop the corresponding orphan target definition.
> * Rebase on top of current bpf tree.
>
> Ross, do you want to give a Reviewed-by or Acked-by?

Sure, thanks for the fix:
Acked-by: Ross Zwisler <[email protected]>

2023-02-23 01:58:26

by Bagas Sanjaya

[permalink] [raw]
Subject: Re: [PATCH v2] Documentation: bpf: Fix link to BTF doc

On 2/23/23 01:55, Ross Zwisler wrote:
>> Ross, do you want to give a Reviewed-by or Acked-by?
>
> Sure, thanks for the fix:
> Acked-by: Ross Zwisler <[email protected]>

OK, thanks!

--
An old man doll... just what I always wanted! - Clara


2023-02-27 21:12:19

by Daniel Borkmann

[permalink] [raw]
Subject: Re: [PATCH v2] Documentation: bpf: Fix link to BTF doc

On 2/22/23 9:35 AM, Bagas Sanjaya wrote:
> Ross reported broken link to BTF documentation
> (Documentation/bpf/btf.rst) in Documentation/bpf/bpf_devel_QA.rst. The
> link in question is written using external link syntax, with the target
> refers to BTF doc in reST source (btf.rst), which doesn't exist in
> resulting HTML output.
>
> Fix the link by replacing external link syntax with simply writing out
> the target doc, which the link will be generated to the correct HTML doc
> target.
>
> Link: https://lore.kernel.org/linux-doc/[email protected]/
> Fixes: 6736aa793c2b5f ("selftests/bpf: Add general instructions for test execution")
> Reported-by: Ross Zwisler <[email protected]>
> Signed-off-by: Bagas Sanjaya <[email protected]>
> ---
> Changes since v1 [1]:
>
> * Reword patch description (I don't see external link semantics on
> Sphinx documentation [2] when I submit v1).
> * Drop the corresponding orphan target definition.
> * Rebase on top of current bpf tree.
>
> Ross, do you want to give a Reviewed-by or Acked-by?
>
> [1]: https://lore.kernel.org/linux-doc/[email protected]/
> [2]: https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#external-links
>
> Documentation/bpf/bpf_devel_QA.rst | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/Documentation/bpf/bpf_devel_QA.rst b/Documentation/bpf/bpf_devel_QA.rst
> index 03d4993eda6f05..715f7321020f27 100644
> --- a/Documentation/bpf/bpf_devel_QA.rst
> +++ b/Documentation/bpf/bpf_devel_QA.rst
> @@ -469,7 +469,7 @@ under test should match the config file fragment in
> tools/testing/selftests/bpf as closely as possible.
>
> Finally to ensure support for latest BPF Type Format features -
> -discussed in `Documentation/bpf/btf.rst`_ - pahole version 1.16
> +discussed in Documentation/bpf/btf.rst - pahole version 1.16
> is required for kernels built with CONFIG_DEBUG_INFO_BTF=y.
> pahole is delivered in the dwarves package or can be built
> from source at
> @@ -690,6 +690,5 @@ when:
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/tools/testing/selftests/bpf/
> .. _Documentation/dev-tools/kselftest.rst:
> https://www.kernel.org/doc/html/latest/dev-tools/kselftest.html
> -.. _Documentation/bpf/btf.rst: btf.rst

Applied, thanks! Looks like kselftest.rst has a similar issue, could you
send a fix for this too?

> Happy BPF hacking!
>
> base-commit: 345d24a91c79f408e355c8b7e873ccde0f097eea
>


2023-02-28 07:49:04

by Bagas Sanjaya

[permalink] [raw]
Subject: Re: [PATCH v2] Documentation: bpf: Fix link to BTF doc

On Mon, Feb 27, 2023 at 10:11:52PM +0100, Daniel Borkmann wrote:
> Applied, thanks! Looks like kselftest.rst has a similar issue, could you
> send a fix for this too?
>

The fixup is in the recently sent miniseries at [1].

[1]: https://lore.kernel.org/linux-doc/[email protected]/

Thanks!

--
An old man doll... just what I always wanted! - Clara


Attachments:
(No filename) (377.00 B)
signature.asc (228.00 B)
Download all attachments