The patch titled mm/memcontrol.c: clenups has been removed from the -mm tree. Its filename was memory-controller-add-switch-to-control-what-type-of-pages-to-limit-v7-cleanup.patch This patch was dropped because it was folded into memory-controller-add-switch-to-control-what-type-of-pages-to-limit-v7.patch ------------------------------------------------------ Subject: mm/memcontrol.c: clenups From: Adrian Bunk <bunk@xxxxxxxxxx> - lock_page_cgroup() - unlock_page_cgroup() - __mem_cgroup_move_lists() Additionally, there was no reason for the "mem_control_type" object. Signed-off-by: Adrian Bunk <bunk@xxxxxxxxxx> Cc: Balbir Singh <balbir@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memcontrol.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN mm/memcontrol.c~memory-controller-add-switch-to-control-what-type-of-pages-to-limit-v7-cleanup mm/memcontrol.c --- a/mm/memcontrol.c~memory-controller-add-switch-to-control-what-type-of-pages-to-limit-v7-cleanup +++ a/mm/memcontrol.c @@ -91,7 +91,7 @@ enum { MEM_CGROUP_TYPE_CACHED, MEM_CGROUP_TYPE_ALL, MEM_CGROUP_TYPE_MAX, -} mem_control_type; +}; static struct mem_cgroup init_mem_cgroup; @@ -151,18 +151,18 @@ struct page_cgroup *page_get_page_con (page->page_cgroup & ~PAGE_CGROUP_LOCK); } -void __always_inline lock_page_cgroup(struct page *page) +static void __always_inline lock_page_cgroup(struct page *page) { bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup); VM_BUG_ON(!page_cgroup_locked(page)); } -void __always_inline unlock_page_cgroup(struct page *page) +static void __always_inline unlock_page_cgroup(struct page *page) { bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup); } -void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active) +static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active) { if (active) list_move(&pc->lru, &pc->mem_cgroup->active_list); _ Patches currently in -mm which might be from bunk@xxxxxxxxxx are origin.patch git-dvb.patch git-hwmon.patch git-nfs-make-nfs_wb_page_priority-static.patch git-scsi-misc.patch memory-controller-add-per-container-lru-and-reclaim-v7.patch memory-controller-add-switch-to-control-what-type-of-pages-to-limit-v7.patch memory-controller-add-switch-to-control-what-type-of-pages-to-limit-v7-cleanup.patch reiser4.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