Message ID | 1605605088-30668-3-git-send-email-alex.shi@linux.alibaba.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | mm/vmalloc: add 'align' parameter explanation for pvm_determine_end_from_reverse | expand |
diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 7e903524e002..4cd7652ce626 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -3137,6 +3137,7 @@ pvm_find_va_enclose_addr(unsigned long addr) * @va: * in - the VA we start the search(reverse order); * out - the VA with the highest aligned end address. + * @align: alignment for required highest address * * Returns: determined end address within vmap_area */
Kernel-doc markup has a issue on pvm_determine_end_from_reverse: mm/vmalloc.c:3145: warning: Function parameter or member 'align' not described in 'pvm_determine_end_from_reverse' Add a explanation for it to remove the warning. Signed-off-by: Alex Shi <alex.shi@linux.alibaba.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: linux-mm@kvack.org Cc: linux-kernel@vger.kernel.org --- mm/vmalloc.c | 1 + 1 file changed, 1 insertion(+)