The patch titled Subject: memcg: include linux/mm.h has been removed from the -mm tree. Its filename was memcg-simplify-and-inline-__mem_cgroup_from_kmem-fix.patch This patch was dropped because an alternative patch was merged ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: memcg: include linux/mm.h A recent change to the memcg code added a call to virt_to_head_page, which is declared in linux/mm.h, but this is not necessarily included here and will cause compile errors: include/linux/memcontrol.h:841:9: error: implicit declaration of function 'virt_to_head_page' [-Werror=implicit-function-declaration] This adds an explicit include statement that gets rid of the error. Fixes: 1ead4c071978 ("memcg: simplify and inline __mem_cgroup_from_kmem") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Vladimir Davydov <vdavydov@xxxxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/memcontrol.h | 1 + 1 file changed, 1 insertion(+) diff -puN include/linux/memcontrol.h~memcg-simplify-and-inline-__mem_cgroup_from_kmem-fix include/linux/memcontrol.h --- a/include/linux/memcontrol.h~memcg-simplify-and-inline-__mem_cgroup_from_kmem-fix +++ a/include/linux/memcontrol.h @@ -27,6 +27,7 @@ #include <linux/vmpressure.h> #include <linux/eventfd.h> #include <linux/mmzone.h> +#include <linux/mm.h> #include <linux/writeback.h> struct mem_cgroup; _ Patches currently in -mm which might be from arnd@xxxxxxxx are arm-thp-remove-infrastructure-for-handling-splitting-pmds-fix.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