diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2020-04-10 14:32:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-04-10 15:36:20 -0700 |
commit | e6a0a7ad1c2b6608e294fbbce60c42ba5a1304ce (patch) | |
tree | 69fe903c6ff5b3df2127e1902fee30b92317af6e /mm | |
parent | 2370ae4b1d5aa7eb70bd7539a420e791d4b0123b (diff) | |
download | linux-e6a0a7ad1c2b6608e294fbbce60c42ba5a1304ce.tar.gz linux-e6a0a7ad1c2b6608e294fbbce60c42ba5a1304ce.tar.bz2 linux-e6a0a7ad1c2b6608e294fbbce60c42ba5a1304ce.zip |
mm/page_alloc.c: fix kernel-doc warning
Add description of function parameter 'mt' to fix kernel-doc warning:
mm/page_alloc.c:3246: warning: Function parameter or member 'mt' not described in '__putback_isolated_page'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
Link: http://lkml.kernel.org/r/02998bd4-0b82-2f15-2570-f86130304d1e@infradead.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/page_alloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 114c56c3685d..d98441ab1036 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -3224,6 +3224,7 @@ int __isolate_free_page(struct page *page, unsigned int order) * __putback_isolated_page - Return a now-isolated page back where we got it * @page: Page that was isolated * @order: Order of the isolated page + * @mt: The page's pageblock's migratetype * * This function is meant to return a page pulled from the free lists via * __isolate_free_page back to the free lists they were pulled from. |