Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

mm/balloon_compaction: mark remaining functions for having proper kerneldoc

Looks like all we are missing for proper kerneldoc is another "*".

Link: https://lkml.kernel.org/r/20260119230133.3551867-18-david@kernel.org
Signed-off-by: David Hildenbrand (Red Hat) <david@kernel.org>
Reviewed-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: Eugenio Pérez <eperezma@redhat.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Jerrin Shaji George <jerrin.shaji-george@broadcom.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Liam Howlett <liam.howlett@oracle.com>
Cc: Madhavan Srinivasan <maddy@linux.ibm.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Mike Rapoport <rppt@kernel.org>
Cc: Nicholas Piggin <npiggin@gmail.com>
Cc: Oscar Salvador <osalvador@suse.de>
Cc: SeongJae Park <sj@kernel.org>
Cc: Suren Baghdasaryan <surenb@google.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Cc: Zi Yan <ziy@nvidia.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

David Hildenbrand (Red Hat) and committed by
Andrew Morton
eee00d04 631eb228

+5 -5
+5 -5
mm/balloon_compaction.c
··· 17 17 */ 18 18 static DEFINE_SPINLOCK(balloon_pages_lock); 19 19 20 - /* 20 + /** 21 21 * balloon_page_insert - insert a page into the balloon's page list and make 22 22 * the page->private assignment accordingly. 23 23 * @balloon : pointer to balloon device ··· 37 37 list_add(&page->lru, &balloon->pages); 38 38 } 39 39 40 - /* 40 + /** 41 41 * balloon_page_finalize - prepare a balloon page that was removed from the 42 42 * balloon list for release to the page allocator 43 43 * @page: page to be released to the page allocator ··· 135 135 } 136 136 EXPORT_SYMBOL_GPL(balloon_page_list_dequeue); 137 137 138 - /* 138 + /** 139 139 * balloon_page_alloc - allocates a new page for insertion into the balloon 140 140 * page list. 141 141 * ··· 158 158 } 159 159 EXPORT_SYMBOL_GPL(balloon_page_alloc); 160 160 161 - /* 161 + /** 162 162 * balloon_page_enqueue - inserts a new page into the balloon page list. 163 163 * 164 164 * @b_dev_info: balloon device descriptor where we will insert a new page ··· 181 181 } 182 182 EXPORT_SYMBOL_GPL(balloon_page_enqueue); 183 183 184 - /* 184 + /** 185 185 * balloon_page_dequeue - removes a page from balloon's page list and returns 186 186 * its address to allow the driver to release the page. 187 187 * @b_dev_info: balloon device descriptor where we will grab a page from.