From: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
To: Jarkko Sakkinen <jarkko@kernel.org>
Cc: corbet@lwn.net,
"Nícolas F. R. A. Prado" <nfraprado@protonmail.com>,
"Ben Widawsky" <ben.widawsky@intel.com>,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] kernel-doc: Make the description of return value readable
Date: Mon, 25 Jan 2021 10:53:53 +0100 [thread overview]
Message-ID: <20210125105353.5c695d42@coco.lan> (raw)
In-Reply-To: <20210125081905.145569-1-jarkko@kernel.org>
Em Mon, 25 Jan 2021 10:19:04 +0200
Jarkko Sakkinen <jarkko@kernel.org> escreveu:
> The description on how to describe return values is over-complicated, and
> hard to follow. For alien reason, the body of the section is a note, and
> the first paragraph speaks about 'Return', albeit the section name is
> actually 'Return:'.
>
> To give a better help when both implementing and reviewing patches, provide
> a straight-forward guideline, how to decribe return values, instead of
> providing a note that starts by "blacklisting" one of the infinite possible
> options of doing it wrong.
>
> This decreases the cumulative amount of time, which is probably
> substantial, on this otherwise somewhat trivial topic.
>
> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
> ---
> Documentation/doc-guide/kernel-doc.rst | 34 +++++++-------------------
> 1 file changed, 9 insertions(+), 25 deletions(-)
>
> diff --git a/Documentation/doc-guide/kernel-doc.rst b/Documentation/doc-guide/kernel-doc.rst
> index 79aaa55d6bcf..dc5e1722c150 100644
> --- a/Documentation/doc-guide/kernel-doc.rst
> +++ b/Documentation/doc-guide/kernel-doc.rst
> @@ -136,34 +136,18 @@ Examples::
> Return values
> ~~~~~~~~~~~~~
>
> -The return value, if any, should be described in a dedicated section
> -named ``Return``.
> +The return value, if any, should be described in a dedicated section named
> +``Return:``.
>
> -.. note::
> -
> - #) The multi-line descriptive text you provide does *not* recognize
> - line breaks, so if you try to format some text nicely, as in::
> -
> - * Return:
> - * 0 - OK
> - * -EINVAL - invalid argument
> - * -ENOMEM - out of memory
> -
> - this will all run together and produce::
> -
> - Return: 0 - OK -EINVAL - invalid argument -ENOMEM - out of memory
> -
> - So, in order to produce the desired line breaks, you need to use a
> - ReST list, e. g.::
> +In order to describe multiple return values, a ReST list should be used. That
> +way Sphinx knows how to line-up them properly::
>
> - * Return:
> - * * 0 - OK to runtime suspend the device
> - * * -EBUSY - Device should not be runtime suspended
> + * Return:
> + * - 0: The run-time is allowed to suspend the device.
> + * - -EBUSY: Device should not be suspended.
>
> - #) If the descriptive text you provide has lines that begin with
> - some phrase followed by a colon, each of those phrases will be taken
> - as a new section heading, which probably won't produce the desired
> - effect.
> +Using a dash rather than asterisk an is probably a better idea, because it does
> +not meddle as much with the C-comments.
Well, there are different opinions with that regards... Some devs think that
using:
- -EBUSY
is confusing. I ended agreeing with that. That's why the recommendation is
to use an asterisk.
Thanks,
Mauro
next prev parent reply other threads:[~2021-01-26 5:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-25 8:19 [PATCH] kernel-doc: Make the description of return value readable Jarkko Sakkinen
2021-01-25 9:53 ` Mauro Carvalho Chehab [this message]
2021-01-25 17:31 ` Jarkko Sakkinen
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=20210125105353.5c695d42@coco.lan \
--to=mchehab+huawei@kernel.org \
--cc=ben.widawsky@intel.com \
--cc=corbet@lwn.net \
--cc=jarkko@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nfraprado@protonmail.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;
as well as URLs for NNTP newsgroup(s).