The patch titled Subject: mm-fix-vm-scalability-regression-in-cgroup-aware-workingset-code-fix has been removed from the -mm tree. Its filename was mm-fix-vm-scalability-regression-in-cgroup-aware-workingset-code-fix.patch This patch was dropped because it was folded into mm-fix-vm-scalability-regression-in-cgroup-aware-workingset-code.patch ------------------------------------------------------ From: Johannes Weiner <hannes@xxxxxxxxxxx> Subject: mm-fix-vm-scalability-regression-in-cgroup-aware-workingset-code-fix Link: http://lkml.kernel.org/r/20160707194024.GA26580@xxxxxxxxxxx Signed-off-by: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mm.h | 2 ++ 1 file changed, 2 insertions(+) diff -puN include/linux/mm.h~mm-fix-vm-scalability-regression-in-cgroup-aware-workingset-code-fix include/linux/mm.h --- a/include/linux/mm.h~mm-fix-vm-scalability-regression-in-cgroup-aware-workingset-code-fix +++ a/include/linux/mm.h @@ -975,6 +975,7 @@ static inline struct mem_cgroup *page_me } static inline struct mem_cgroup *page_memcg_rcu(struct page *page) { + WARN_ON_ONCE(!rcu_read_lock_held()); return READ_ONCE(page->mem_cgroup); } #else @@ -984,6 +985,7 @@ static inline struct mem_cgroup *page_me } static inline struct mem_cgroup *page_memcg_rcu(struct page *page) { + WARN_ON_ONCE(!rcu_read_lock_held()); return NULL; } #endif _ Patches currently in -mm which might be from hannes@xxxxxxxxxxx are mm-fix-vm-scalability-regression-in-cgroup-aware-workingset-code.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