The patch titled Subject: memcg-add-page_cgroup_ino-helper-fix has been removed from the -mm tree. Its filename was memcg-add-page_cgroup_ino-helper-fix.patch This patch was dropped because it was folded into memcg-add-page_cgroup_ino-helper.patch ------------------------------------------------------ From: Vladimir Davydov <vdavydov@xxxxxxxxxxxxx> Subject: memcg-add-page_cgroup_ino-helper-fix Cc: Andres Lagar-Cavilla <andreslc@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/memcontrol.h | 2 +- mm/memcontrol.c | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff -puN include/linux/memcontrol.h~memcg-add-page_cgroup_ino-helper-fix include/linux/memcontrol.h --- a/include/linux/memcontrol.h~memcg-add-page_cgroup_ino-helper-fix +++ a/include/linux/memcontrol.h @@ -345,7 +345,7 @@ static inline bool mm_match_cgroup(struc } struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page); -unsigned long page_cgroup_ino(struct page *page); +ino_t page_cgroup_ino(struct page *page); static inline bool mem_cgroup_disabled(void) { diff -puN mm/memcontrol.c~memcg-add-page_cgroup_ino-helper-fix mm/memcontrol.c --- a/mm/memcontrol.c~memcg-add-page_cgroup_ino-helper-fix +++ a/mm/memcontrol.c @@ -448,8 +448,13 @@ struct cgroup_subsys_state *mem_cgroup_c * Look up the closest online ancestor of the memory cgroup @page is charged to * and return its inode number or 0 if @page is not charged to any cgroup. It * is safe to call this function without holding a reference to @page. + * + * Note, this function is inherently racy, because there is nothing to prevent + * the cgroup inode from getting torn down and potentially reallocated a moment + * after page_cgroup_ino() returns, so it only should be used by callers that + * do not care (such as procfs interfaces). */ -unsigned long page_cgroup_ino(struct page *page) +ino_t page_cgroup_ino(struct page *page) { struct mem_cgroup *memcg; unsigned long ino = 0; _ Patches currently in -mm which might be from vdavydov@xxxxxxxxxxxxx are memcg-add-page_cgroup_ino-helper.patch hwpoison-use-page_cgroup_ino-for-filtering-by-memcg.patch memcg-zap-try_get_mem_cgroup_from_page.patch proc-add-kpagecgroup-file.patch mmu-notifier-add-clear_young-callback.patch mmu-notifier-add-clear_young-callback-fix.patch proc-add-kpageidle-file.patch proc-add-kpageidle-file-fix.patch proc-add-kpageidle-file-fix-2.patch proc-add-kpageidle-file-fix-3.patch proc-add-kpageidle-file-fix-4.patch proc-add-kpageidle-file-fix-5.patch proc-add-kpageidle-file-fix-6.patch proc-add-kpageidle-file-fix-6-fix-2.patch proc-export-idle-flag-via-kpageflags.patch proc-add-cond_resched-to-proc-kpage-read-write-loop.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