The patch titled Subject: mm-memcontrol-eliminate-root-memorycurrent-fix-2 has been removed from the -mm tree. Its filename was mm-memcontrol-eliminate-root-memorycurrent-fix-2.patch This patch was dropped because it was folded into mm-memcontrol-eliminate-root-memorycurrent.patch ------------------------------------------------------ From: Johannes Weiner <hannes@xxxxxxxxxxx> Subject: mm-memcontrol-eliminate-root-memorycurrent-fix-2 Signed-off-by: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memcontrol.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN mm/memcontrol.c~mm-memcontrol-eliminate-root-memorycurrent-fix-2 mm/memcontrol.c --- a/mm/memcontrol.c~mm-memcontrol-eliminate-root-memorycurrent-fix-2 +++ a/mm/memcontrol.c @@ -5026,7 +5026,9 @@ static void mem_cgroup_bind(struct cgrou static u64 memory_current_read(struct cgroup_subsys_state *css, struct cftype *cft) { - return page_counter_read(&mem_cgroup_from_css(css)->memory); + struct mem_cgroup *memcg = mem_cgroup_from_css(css); + + return (u64)page_counter_read(&memcg->memory) * PAGE_SIZE; } static int memory_low_show(struct seq_file *m, void *v) _ Patches currently in -mm which might be from hannes@xxxxxxxxxxx are mm-memcontrol-eliminate-root-memorycurrent.patch mm-page_counter-let-page_counter_try_charge-return-bool.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