From: Randy Dunlap Date: Fri, 12 Feb 2016 00:12:58 +0000 (-0800) Subject: mm: fix filemap.c kernel doc warning X-Git-Tag: v4.14-rc1~3838^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62eb320ab077890dbbcc28343fa6432a82a10c35;p=platform%2Fkernel%2Flinux-rpi.git mm: fix filemap.c kernel doc warning Add missing kernel-doc notation for function parameter 'gfp_mask' to fix kernel-doc warning. mm/filemap.c:1898: warning: No description found for parameter 'gfp_mask' Signed-off-by: Randy Dunlap Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/filemap.c b/mm/filemap.c index bc94386..23edcce 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -1890,6 +1890,7 @@ EXPORT_SYMBOL(generic_file_read_iter); * page_cache_read - adds requested page to the page cache if not already there * @file: file to read * @offset: page index + * @gfp_mask: memory allocation flags * * This adds the requested page to the page cache if it isn't already there, * and schedules an I/O to read in its contents from disk.