Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

block: bio: fix a warning at the kernel-doc markups

Using "@bio's parent" causes the following waring:
./block/bio.c:10: WARNING: Inline emphasis start-string without end-string.

The main problem here is that this would be converted into:

**bio**'s parent

By kernel-doc, which is not a valid notation. It would be
possible to use, instead, this kernel-doc markup:

``bio's`` parent

Yet, here, is probably simpler to just use an altenative language:

the parent of @bio

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>

+1 -1
+1 -1
block/bio.c
··· 327 327 /** 328 328 * bio_chain - chain bio completions 329 329 * @bio: the target bio 330 - * @parent: the @bio's parent bio 330 + * @parent: the parent bio of @bio 331 331 * 332 332 * The caller won't have a bi_end_io called when @bio completes - instead, 333 333 * @parent's bi_end_io won't be called until both @parent and @bio have