The patch titled Subject: mm/swap.c: mark sort_page_lruvec with static keyword has been added to the -mm tree. Its filename is mm-swapc-reduce-lock-contention-in-lru_cache_add-fix.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-swapc-reduce-lock-contention-in-lru_cache_add-fix.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-swapc-reduce-lock-contention-in-lru_cache_add-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Zou Wei <zou_wei@xxxxxxxxxx> Subject: mm/swap.c: mark sort_page_lruvec with static keyword Fix the following sparse warning: mm/swap.c:1018:5: warning: symbol 'sort_page_lruvec' was not declared. Should it be static? Link: https://lkml.kernel.org/r/1606218425-3874-1-git-send-email-zou_wei@xxxxxxxxxx Signed-off-by: Zou Wei <zou_wei@xxxxxxxxxx> Cc: Alex Shi <alex.shi@xxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/swap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/swap.c~mm-swapc-reduce-lock-contention-in-lru_cache_add-fix +++ a/mm/swap.c @@ -1015,7 +1015,7 @@ struct lruvecs { }; /* Sort pvec pages on their lruvec */ -int sort_page_lruvec(struct lruvecs *lruvecs, struct pagevec *pvec) +static int sort_page_lruvec(struct lruvecs *lruvecs, struct pagevec *pvec) { int i, j, nr_lruvec; struct page *page; _ Patches currently in -mm which might be from zou_wei@xxxxxxxxxx are mm-page_alloc-mark-some-symbols-with-static-keyword.patch mm-swapc-reduce-lock-contention-in-lru_cache_add-fix.patch