From: Quentin Monnet <quentin.monnet@netronome.com>
To: Edward Cree <ecree@solarflare.com>, daniel@iogearbox.net, ast@kernel.org
Cc: dsahern@gmail.com, yhs@fb.com, netdev@vger.kernel.org,
oss-drivers@netronome.com
Subject: Re: [PATCH bpf-next] bpf: relax constraints on formatting for eBPF helper documentation
Date: Mon, 30 Apr 2018 18:45:32 +0100 [thread overview]
Message-ID: <2f2f31e1-3638-fac8-cd15-628de11d2f52@netronome.com> (raw)
In-Reply-To: <ecc5415e-0a60-ba6b-84a7-d39bb8b4a0d5@solarflare.com>
2018-04-30 17:33 UTC+0100 ~ Edward Cree <ecree@solarflare.com>
> On 30/04/18 16:59, Quentin Monnet wrote:
>> The Python script used to parse and extract eBPF helpers documentation
>> from include/uapi/linux/bpf.h expects a very specific formatting for the
>> descriptions (single dots represent a space, '>' stands for a tab):
>>
>> /*
>> ...
>> *.int bpf_helper(list of arguments)
>> *.> Description
>> *.> > Start of description
>> *.> > Another line of description
>> *.> > And yet another line of description
>> *.> Return
>> *.> > 0 on success, or a negative error in case of failure
>> ...
>> */
>>
>> This is too strict, and painful for developers who wants to add
>> documentation for new helpers. Worse, it is extremelly difficult to
>> check that the formatting is correct during reviews. Change the
>> format expected by the script and make it more flexible. The script now
>> works whether or not the initial space (right after the star) is
>> present, and accepts both tabs and white spaces (or a combination of
>> both) for indenting description sections and contents.
>>
>> Concretely, something like the following would now be supported:
>>
>> /*
>> ...
>> *int bpf_helper(list of arguments)
>> *......Description
>> *.> > Start of description...
>> *> > Another line of description
>> *..............And yet another line of description
>> *> Return
>> *.> ........0 on success, or a negative error in case of failure
>> ...
>> */
>>
>> Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com>
>> ---
>> scripts/bpf_helpers_doc.py | 10 +++++-----
>> 1 file changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/scripts/bpf_helpers_doc.py b/scripts/bpf_helpers_doc.py
>> index 30ba0fee36e4..717547e6f0a6 100755
>> --- a/scripts/bpf_helpers_doc.py
>> +++ b/scripts/bpf_helpers_doc.py
>> @@ -87,7 +87,7 @@ class HeaderParser(object):
>> # - Same as above, with "const" and/or "struct" in front of type
>> # - "..." (undefined number of arguments, for bpf_trace_printk())
>> # There is at least one term ("void"), and at most five arguments.
>> - p = re.compile('^ \* ((.+) \**\w+\((((const )?(struct )?(\w+|\.\.\.)( \**\w+)?)(, )?){1,5}\))$')
>> + p = re.compile('^ \* ?((.+) \**\w+\((((const )?(struct )?(\w+|\.\.\.)( \**\w+)?)(, )?){1,5}\))$')
> The proper coding style for such things is to go straight to tabs after
> the star and not have the space. So if we're going to make the script
> flexible here (and leave coding style enforcement to other tools such
> as checkpatch), maybe the regexen should just begin '^ \*\s+' and avoid
> relying on counting indentation to delimit sections (e.g. scan for the
> section headers like '^ \*\s+Description$' instead).
Thanks Edward! I agree it would be cleaner. However, with the current
format of the doc, I see two shortcomings.
- First we need a way to detect the end of a section. There is no
"Return" section for helper returning void, so we cannot rely on it to
end the "Description" section. And there is no delimiter to indicate the
end of the description of a given helper. We cannot assume that a string
matching a function definition, alone on its line, indicate the start of
a new helper (this is not the case). So as I see it, this would at least
require some delimiter between the descriptions of different functions
in bpf.h. I could add them if you think this is better.
- Also, we loose the possibility to further indent the text from the
description. Think about code snippets in descriptions: were we to
extract the lines with a regex such as / *\s+(.*)/, I see no way to get
the additional indent that should appear in the man page, if we do not
know what indent level was used for the helper description. I do not see
any simple workaround.
This being said, I am ready to bring whatever changes are needed to make
writing new helper doc easier, so I am open to suggestions if you have
workarounds for these or if the consensus is that the formatting should
be completely revised.
> Btw, leading '^' is unnecessary as re.match() is already implicitly
> anchored at start-of-string. (The trailing '$' are still needed.)
Oh, thanks! I'll fix that.
Quentin
prev parent reply other threads:[~2018-04-30 17:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-30 15:59 [PATCH bpf-next] bpf: relax constraints on formatting for eBPF helper documentation Quentin Monnet
2018-04-30 16:33 ` Edward Cree
2018-04-30 17:45 ` Quentin Monnet [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2f2f31e1-3638-fac8-cd15-628de11d2f52@netronome.com \
--to=quentin.monnet@netronome.com \
--cc=ast@kernel.org \
--cc=daniel@iogearbox.net \
--cc=dsahern@gmail.com \
--cc=ecree@solarflare.com \
--cc=netdev@vger.kernel.org \
--cc=oss-drivers@netronome.com \
--cc=yhs@fb.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox