mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 14:33:24 -04:00
mm: name some args in a function declaration
Checkpatch complains about this, a later patch will move the code, fix it so that checkpatch doesn't complain about that patch. Do it in a separate patch so the "move the code" patch is trivial to review using Git's diff colouring. Link: https://lore.kernel.org/20260703-alloc-trylock-v5-3-c87b714e19d3@google.com Signed-off-by: Brendan Jackman <jackmanb@google.com> Reviewed-by: Vlastimil Babka (SUSE) <vbabka@kernel.org> Reviewed-by: Zi Yan <ziy@nvidia.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
committed by
Andrew Morton
parent
4b2b50a9f8
commit
2666382a4f
@@ -919,8 +919,8 @@ extern bool free_pages_prepare(struct page *page, unsigned int order);
|
||||
|
||||
extern int user_min_free_kbytes;
|
||||
|
||||
struct page *__alloc_frozen_pages_noprof(gfp_t, unsigned int order, int nid,
|
||||
nodemask_t *);
|
||||
struct page *__alloc_frozen_pages_noprof(gfp_t gfp, unsigned int order, int nid,
|
||||
nodemask_t *nodemask);
|
||||
#define __alloc_frozen_pages(...) \
|
||||
alloc_hooks(__alloc_frozen_pages_noprof(__VA_ARGS__))
|
||||
void free_frozen_pages(struct page *page, unsigned int order);
|
||||
|
||||
Reference in New Issue
Block a user