The patch titled cifs: zero_user_page() conversions has been removed from the -mm tree. Its filename was cifs-zero_user_page-conversion.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: cifs: zero_user_page() conversions From: Eric Sandeen <sandeen@xxxxxxxxxx> Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx> Cc: Steven French <sfrench@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/cifs/inode.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff -puN fs/cifs/inode.c~cifs-zero_user_page-conversion fs/cifs/inode.c --- a/fs/cifs/inode.c~cifs-zero_user_page-conversion +++ a/fs/cifs/inode.c @@ -1338,17 +1338,13 @@ static int cifs_truncate_page(struct add pgoff_t index = from >> PAGE_CACHE_SHIFT; unsigned offset = from & (PAGE_CACHE_SIZE - 1); struct page *page; - char *kaddr; int rc = 0; page = grab_cache_page(mapping, index); if (!page) return -ENOMEM; - kaddr = kmap_atomic(page, KM_USER0); - memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset); - flush_dcache_page(page); - kunmap_atomic(kaddr, KM_USER0); + zero_user_page(page, offset, PAGE_CACHE_SIZE - offset, KM_USER0); unlock_page(page); page_cache_release(page); return rc; _ Patches currently in -mm which might be from sandeen@xxxxxxxxxx are origin.patch git-cifs.patch git-ocfs2.patch ext4-zero_user_page-conversion.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