The patch titled Subject: memcg: fix SLOB build regression has been removed from the -mm tree. Its filename was mm-memcontrol-clean-up-alloc-online-offline-free-functions-fix-2.patch This patch was dropped because it was folded into mm-memcontrol-clean-up-alloc-online-offline-free-functions.patch ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: memcg: fix SLOB build regression A recent cleanup broke the build when CONFIG_SLOB is used: mm/memcontrol.c: In function 'memcg_update_kmem_limit': mm/memcontrol.c:2974:9: error: implicit declaration of function 'memcg_online_kmem' [-Werror=implicit-function-declaration] mm/memcontrol.c: In function 'mem_cgroup_css_alloc': mm/memcontrol.c:4229:10: error: too many arguments to function 'memcg_propagate_kmem' mm/memcontrol.c:2949:12: note: declared here This fixes the memcg_propagate_kmem prototype to match the normal implementation and adds the respective memcg_online_kmem helper function that was needed. Fixes: a5ed904c5039 ("mm: memcontrol: clean up alloc, online, offline, free functions") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Acked-by: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memcontrol.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff -puN mm/memcontrol.c~mm-memcontrol-clean-up-alloc-online-offline-free-functions-fix-2 mm/memcontrol.c --- a/mm/memcontrol.c~mm-memcontrol-clean-up-alloc-online-offline-free-functions-fix-2 +++ a/mm/memcontrol.c @@ -2941,7 +2941,11 @@ static void memcg_free_kmem(struct mem_c } } #else -static int memcg_propagate_kmem(struct mem_cgroup *memcg) +static int memcg_propagate_kmem(struct mem_cgroup *parent, struct mem_cgroup *memcg) +{ + return 0; +} +static int memcg_online_kmem(struct mem_cgroup *memcg) { return 0; } _ Patches currently in -mm which might be from arnd@xxxxxxxx are memstick-use-sector_div-instead-of-do_div.patch mm-memcontrol-clean-up-alloc-online-offline-free-functions.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