The patch titled Subject: mm/memcontrol.c: make local symbol static has been added to the -mm tree. Its filename is memcg-memcontrol-make-local-symbol-static.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/memcg-memcontrol-make-local-symbol-static.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/memcg-memcontrol-make-local-symbol-static.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/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Christopher Díaz Riveros <chrisadr@xxxxxxxxxx> Subject: mm/memcontrol.c: make local symbol static Fixes the following sparse warning: mm/memcontrol.c:1097:14: warning: symbol 'memcg1_stats' was not declared. Should it be static? Link: http://lkml.kernel.org/r/20180118193327.14200-1-chrisadr@xxxxxxxxxx Signed-off-by: Christopher Díaz Riveros <chrisadr@xxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memcontrol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/memcontrol.c~memcg-memcontrol-make-local-symbol-static mm/memcontrol.c --- a/mm/memcontrol.c~memcg-memcontrol-make-local-symbol-static +++ a/mm/memcontrol.c @@ -1094,7 +1094,7 @@ static bool mem_cgroup_wait_acct_move(st return false; } -unsigned int memcg1_stats[] = { +static const unsigned int memcg1_stats[] = { MEMCG_CACHE, MEMCG_RSS, MEMCG_RSS_HUGE, _ Patches currently in -mm which might be from chrisadr@xxxxxxxxxx are memcg-memcontrol-make-local-symbol-static.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html