The patch titled Subject: mm/memory.c: remove unused code from do_wp_page() has been removed from the -mm tree. Its filename was mm-memoryc-remove-unused-code-from-do_wp_page.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Dominik Dingel <dingel@xxxxxxxxxxxxxxxxxx> Subject: mm/memory.c: remove unused code from do_wp_page() page_mkwrite is initalized with zero and only set once, from that point exists no way to get to the oom or oom_free_new labels. [akpm@xxxxxxxxxxxxxxxxxxxx: cleanup] Signed-off-by: Dominik Dingel <dingel@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff -puN mm/memory.c~mm-memoryc-remove-unused-code-from-do_wp_page mm/memory.c --- a/mm/memory.c~mm-memoryc-remove-unused-code-from-do_wp_page +++ a/mm/memory.c @@ -2780,13 +2780,8 @@ unlock: oom_free_new: page_cache_release(new_page); oom: - if (old_page) { - if (page_mkwrite) { - unlock_page(old_page); - page_cache_release(old_page); - } + if (old_page) page_cache_release(old_page); - } return VM_FAULT_OOM; unwritable_page: _ Patches currently in -mm which might be from dingel@xxxxxxxxxxxxxxxxxx are origin.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