mbox series

[0/2] Two fixes for documentation-file-ref-check

Message ID cover.1634629094.git.mchehab+huawei@kernel.org (mailing list archive)
Headers show
Series Two fixes for documentation-file-ref-check | expand

Message

Mauro Carvalho Chehab Oct. 19, 2021, 7:42 a.m. UTC
Hi Jon,

This small series contain two fixes for  documentation-file-ref-check,
in order to remove some (false) positives.

The first one makes it to ignore files that start with a dot. It
prevents the script to try parsing hidden files. 

The second one shuts up (currently) two false-positives for some
documents under:

	tools/bpf/bpftool/Documentation/

Mauro Carvalho Chehab (2):
  scripts: documentation-file-ref-check: ignore hidden files
  scripts: documentation-file-ref-check: fix bpf selftests path

 scripts/documentation-file-ref-check | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Jonathan Corbet Oct. 26, 2021, 3:42 p.m. UTC | #1
Mauro Carvalho Chehab <mchehab+huawei@kernel.org> writes:

> Hi Jon,
>
> This small series contain two fixes for  documentation-file-ref-check,
> in order to remove some (false) positives.
>
> The first one makes it to ignore files that start with a dot. It
> prevents the script to try parsing hidden files. 
>
> The second one shuts up (currently) two false-positives for some
> documents under:
>
> 	tools/bpf/bpftool/Documentation/
>
> Mauro Carvalho Chehab (2):
>   scripts: documentation-file-ref-check: ignore hidden files
>   scripts: documentation-file-ref-check: fix bpf selftests path
>
>  scripts/documentation-file-ref-check | 4 ++++
>  1 file changed, 4 insertions(+)

Set applied, thanks.

jon