From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f172.google.com (mail-we0-f172.google.com [74.125.82.172]) by kanga.kvack.org (Postfix) with ESMTP id E60BE6B0039 for ; Thu, 12 Jun 2014 17:48:31 -0400 (EDT) Received: by mail-we0-f172.google.com with SMTP id u57so1950739wes.31 for ; Thu, 12 Jun 2014 14:48:31 -0700 (PDT) Received: from mx1.redhat.com (mx1.redhat.com. [209.132.183.28]) by mx.google.com with ESMTP id qi1si3747559wjc.18.2014.06.12.14.48.28 for ; Thu, 12 Jun 2014 14:48:29 -0700 (PDT) From: Naoya Horiguchi Subject: [PATCH -mm v2 00/11] pagewalk: standardize current users, move pmd locking, apply to mincore Date: Thu, 12 Jun 2014 17:48:00 -0400 Message-Id: <1402609691-13950-1-git-send-email-n-horiguchi@ah.jp.nec.com> Sender: owner-linux-mm@kvack.org List-ID: To: linux-mm@kvack.org Cc: Dave Hansen , Andrew Morton , Hugh Dickins , "Kirill A. Shutemov" , linux-kernel@vger.kernel.org This is ver.2 of page table walker patchset. I move forward on this cleanup work, and added some improvement from the previous version. Major changes are: - removed walk->skip which becomes removable due to refactoring existing users - commonalized the argments of entry handlers (pte|pmd|hugetlb)_entry() which allows us to use the same function as multiple handlers. This patchset is based on mmotm-2014-05-21-16-57. Tree: git@github.com:Naoya-Horiguchi/linux.git Branch: mmotm-2014-05-21-16-57/page_table_walker.v2 Thanks, Naoya Horiguchi --- Summary: Naoya Horiguchi (11): pagewalk: remove pgd_entry() and pud_entry() madvise: cleanup swapin_walk_pmd_entry() memcg: separate mem_cgroup_move_charge_pte_range() pagewalk: move pmd_trans_huge_lock() from callbacks to common code pagewalk: remove mm_walk->skip pagewalk: add size to struct mm_walk pagewalk: change type of arg of callbacks pagewalk: update comment on walk_page_range() fs/proc/task_mmu.c: refactor smaps fs/proc/task_mmu.c: clean up gather_*_stats() mincore: apply page table walker on do_mincore() arch/openrisc/kernel/dma.c | 6 +- arch/powerpc/mm/subpage-prot.c | 5 +- fs/proc/task_mmu.c | 140 ++++++++--------------------- include/linux/mm.h | 21 ++--- mm/huge_memory.c | 20 ----- mm/madvise.c | 55 +++++------- mm/memcontrol.c | 170 +++++++++++++++++------------------ mm/memory.c | 5 +- mm/mempolicy.c | 15 ++-- mm/mincore.c | 195 ++++++++++++++--------------------------- mm/pagewalk.c | 143 +++++++++++++----------------- 11 files changed, 294 insertions(+), 481 deletions(-) -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org