The patch titled Subject: mm-workingset-per-cgroup-cache-thrash-detection-fix has been removed from the -mm tree. Its filename was mm-workingset-per-cgroup-cache-thrash-detection-fix.patch This patch was dropped because it was folded into mm-workingset-per-cgroup-cache-thrash-detection.patch ------------------------------------------------------ From: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> Subject: mm-workingset-per-cgroup-cache-thrash-detection-fix Do not return from workingset_activation() with locked rcu and page. Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> Acked-by: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/workingset.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN mm/workingset.c~mm-workingset-per-cgroup-cache-thrash-detection-fix mm/workingset.c --- a/mm/workingset.c~mm-workingset-per-cgroup-cache-thrash-detection-fix +++ a/mm/workingset.c @@ -317,9 +317,10 @@ void workingset_activation(struct page * * root_mem_cgroup even for !CONFIG_MEMCG. */ if (!mem_cgroup_disabled() && !memcg) - return; + goto out; lruvec = mem_cgroup_zone_lruvec(page_zone(page), memcg); atomic_long_inc(&lruvec->inactive_age); +out: unlock_page_memcg(memcg); } _ Patches currently in -mm which might be from sergey.senozhatsky@xxxxxxxxx are mm-workingset-per-cgroup-cache-thrash-detection.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