From: Mike Rapoport Date: Wed, 22 Aug 2018 04:53:03 +0000 (-0700) Subject: mm/mempool.c: add missing parameter description X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a3bf6ce366496016990d8578af74673ea04178ff;p=linux.git mm/mempool.c: add missing parameter description The kernel-doc for mempool_init function is missing the description of the pool parameter. Add it. Link: http://lkml.kernel.org/r/1532336274-26228-1-git-send-email-rppt@linux.vnet.ibm.com Signed-off-by: Mike Rapoport Acked-by: David Rientjes Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/mempool.c b/mm/mempool.c index 44f5fa98c1e77..0ef8cc8d16022 100644 --- a/mm/mempool.c +++ b/mm/mempool.c @@ -213,6 +213,7 @@ EXPORT_SYMBOL(mempool_init_node); /** * mempool_init - initialize a memory pool + * @pool: pointer to the memory pool that should be initialized * @min_nr: the minimum number of elements guaranteed to be * allocated for this pool. * @alloc_fn: user-defined element-allocation function.