From: Jonathan Corbet <corbet@lwn.net>
To: Arnd Bergmann <arnd@arndb.de>
Cc: "Jens Axboe" <axboe@kernel.dk>,
"James E.J. Bottomley" <jejb@linux.ibm.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
"Alexander Viro" <viro@zeniv.linux.org.uk>,
linux-kernel@vger.kernel.org, y2038@lists.linaro.org,
"Mauro Carvalho Chehab" <mchehab+samsung@kernel.org>,
"Jonathan Neuschäfer" <j.neuschaefer@gmx.net>,
"Masahiro Yamada" <yamada.masahiro@socionext.com>,
"Vladimir Oltean" <olteanv@gmail.com>,
"Kent Overstreet" <kent.overstreet@gmail.com>,
linux-doc@vger.kernel.org
Subject: Re: [PATCH 24/24] Documentation: document ioctl interfaces better
Date: Wed, 11 Dec 2019 14:05:51 -0700 [thread overview]
Message-ID: <20191211140551.00520269@lwn.net> (raw)
In-Reply-To: <20191211204306.1207817-25-arnd@arndb.de>
On Wed, 11 Dec 2019 21:42:58 +0100
Arnd Bergmann <arnd@arndb.de> wrote:
> Documentation/process/botching-up-ioctls.rst was orignally
> written as a blog post for DRM driver writers, so it it misses
> some points while going into a lot of detail on others.
>
> Try to provide a replacement that addresses typical issues
> across a wider range of subsystems, and follows the style of
> the core-api documentation better.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Thanks for improving the docs! I have a few nits outside of the content
itself.
> Documentation/core-api/index.rst | 1 +
> Documentation/core-api/ioctl.rst | 250 +++++++++++++++++++++++++++++++
> 2 files changed, 251 insertions(+)
> create mode 100644 Documentation/core-api/ioctl.rst
So you left the old document in place; was that intentional?
> diff --git a/Documentation/core-api/index.rst b/Documentation/core-api/index.rst
> index ab0eae1c153a..3f28b2f668be 100644
> --- a/Documentation/core-api/index.rst
> +++ b/Documentation/core-api/index.rst
> @@ -39,6 +39,7 @@ Core utilities
> ../RCU/index
> gcc-plugins
> symbol-namespaces
> + ioctl
>
>
> Interfaces for kernel debugging
> diff --git a/Documentation/core-api/ioctl.rst b/Documentation/core-api/ioctl.rst
> new file mode 100644
> index 000000000000..cb2c86ae63e7
> --- /dev/null
> +++ b/Documentation/core-api/ioctl.rst
> @@ -0,0 +1,250 @@
> +======================
> +ioctl based interfaces
> +======================
> +
> +:c:func:`ioctl` is the most common way for applications to interface
Please don't use :c:func: anymore. If you just say "ioctl()" the right
thing will happen (which is nothing here, since there isn't anything that
makes sense to link to in the internal kernel context).
We need a checkpatch rule for :c:func: I guess.
Similarly, later on you have:
> +Timeout values and timestamps should ideally use CLOCK_MONOTONIC time,
> +as returned by ``ktime_get_ns()`` or ``ktime_get_ts64()``. Unlike
> +CLOCK_REALTIME, this makes the timestamps immune from jumping backwards
> +or forwards due to leap second adjustments and clock_settime() calls.
Making those functions ``literal`` will defeat the automatic
cross-referencing. Better to just say ktime_get_ns() without quotes.
[...]
> +* On the x86-32 (i386) architecture, the alignment of 64-bit variables
> + is only 32 bit, but they are naturally aligned on most other
> + architectures including x86-64. This means a structure like
> +
> + ::
You don't need the extra lines here; just say "...a structure like::"
> + struct foo {
> + __u32 a;
> + __u64 b;
> + __u32 c;
> + };
> +
Thanks,
jon
next prev parent reply other threads:[~2019-12-11 21:05 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-11 20:42 [PATCH 00/24] block, scsi: final compat_ioctl cleanup Arnd Bergmann
2019-12-11 20:42 ` [PATCH 24/24] Documentation: document ioctl interfaces better Arnd Bergmann
2019-12-11 21:05 ` Jonathan Corbet [this message]
2019-12-12 10:56 ` Arnd Bergmann
2019-12-12 8:16 ` Geert Uytterhoeven
2019-12-12 11:04 ` Arnd Bergmann
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=20191211140551.00520269@lwn.net \
--to=corbet@lwn.net \
--cc=arnd@arndb.de \
--cc=axboe@kernel.dk \
--cc=j.neuschaefer@gmx.net \
--cc=jejb@linux.ibm.com \
--cc=kent.overstreet@gmail.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=mchehab+samsung@kernel.org \
--cc=olteanv@gmail.com \
--cc=viro@zeniv.linux.org.uk \
--cc=y2038@lists.linaro.org \
--cc=yamada.masahiro@socionext.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).