summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2017-10-16 11:01:00 -0700
committerJens Axboe <axboe@kernel.dk>2017-10-16 13:00:12 -0600
commit519c8e9ffd86143fedd84cf833a09f36b47d0f5c (patch)
treeb7a094cc57942060395f2c8d7fcc272e6553598a /block
parent9ce762e85bc95fd7aa1fb5f8cfc38ce5a228fc95 (diff)
downloadlinux-0-day-519c8e9ffd86143fedd84cf833a09f36b47d0f5c.tar.gz
linux-0-day-519c8e9ffd86143fedd84cf833a09f36b47d0f5c.tar.xz
block: fix Sphinx kernel-doc warning
Sphinx treats symbols that end with '_' as a kind of special documentation indicator, so fix that by adding an ending '*' to it. ../block/bio.c:404: ERROR: Unknown target name: "gfp". Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block')
-rw-r--r--block/bio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/bio.c b/block/bio.c
index bf0dbe8f78f8e..ae9ad34e6a71f 100644
--- a/block/bio.c
+++ b/block/bio.c
@@ -400,7 +400,7 @@ static void punt_bios_to_rescuer(struct bio_set *bs)
/**
* bio_alloc_bioset - allocate a bio for I/O
- * @gfp_mask: the GFP_ mask given to the slab allocator
+ * @gfp_mask: the GFP_* mask given to the slab allocator
* @nr_iovecs: number of iovecs to pre-allocate
* @bs: the bio_set to allocate from.
*