The patch titled Subject: mm-fs-obey-gfp_mapping-for-add_to_page_cache-fix has been removed from the -mm tree. Its filename was page-flags-define-pg_locked-behavior-on-compound-pages-fix.patch This patch was dropped because it was folded into page-flags-define-pg_locked-behavior-on-compound-pages.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-fs-obey-gfp_mapping-for-add_to_page_cache-fix fix fs/cifs/file.c Cc: "Kirill A. Shutemov" <kirill.shutemov@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/cifs/file.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN fs/cifs/file.c~page-flags-define-pg_locked-behavior-on-compound-pages-fix fs/cifs/file.c --- a/fs/cifs/file.c~page-flags-define-pg_locked-behavior-on-compound-pages-fix +++ a/fs/cifs/file.c @@ -3391,13 +3391,13 @@ readpages_get_pages(struct address_space * should have access to this page, we're safe to simply set * PG_locked without checking it first. */ - __set_page_locked(page); + __SetPageLocked(page); rc = add_to_page_cache_locked(page, mapping, page->index, gfp); /* give up if we can't stick it in the cache */ if (rc) { - __clear_page_locked(page); + __ClearPageLocked(page); return rc; } @@ -3418,9 +3418,9 @@ readpages_get_pages(struct address_space if (*bytes + PAGE_CACHE_SIZE > rsize) break; - __set_page_locked(page); + __SetPageLocked(page); if (add_to_page_cache_locked(page, mapping, page->index, gfp)) { - __clear_page_locked(page); + __ClearPageLocked(page); break; } list_move_tail(&page->lru, tmplist); _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are include-linux-dcacheh-remove-semicolons-from-hash_len_declare.patch fs-block_devc-bdev_write_page-use-blk_queue_enter-gfp_noio.patch page-flags-define-pg_locked-behavior-on-compound-pages.patch mm-rework-mapcount-accounting-to-enable-4k-mapping-of-thps-fix.patch mm-hwpoison-adjust-for-new-thp-refcounting-fix.patch thp-reintroduce-split_huge_page-fix.patch mm-prepare-page_referenced-and-page_idle-to-new-thp-refcounting-checkpatch-fixes.patch thp-add-debugfs-handle-to-split-all-huge-pages-fix.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