The patch titled ocfs2: use zero_user_page has been removed from the -mm tree. Its filename was ocfs2-use-zero_user_page.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ocfs2: use zero_user_page From: Nate Diller <nate.diller@xxxxxxxxx> Use zero_user_page() instead of open-coding it. Signed-off-by: Nate Diller <nate.diller@xxxxxxxxx> Cc: Mark Fasheh <mark.fasheh@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ocfs2/aops.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff -puN fs/ocfs2/aops.c~ocfs2-use-zero_user_page fs/ocfs2/aops.c --- a/fs/ocfs2/aops.c~ocfs2-use-zero_user_page +++ a/fs/ocfs2/aops.c @@ -235,10 +235,7 @@ static int ocfs2_readpage(struct file *f * XXX sys_readahead() seems to get that wrong? */ if (start >= i_size_read(inode)) { - char *addr = kmap(page); - memset(addr, 0, PAGE_SIZE); - flush_dcache_page(page); - kunmap(page); + zero_user_page(page, 0, PAGE_SIZE, KM_USER0); SetPageUptodate(page); ret = 0; goto out_alloc; _ Patches currently in -mm which might be from nate.diller@xxxxxxxxx are origin.patch ntfs-use-zero_user_page.patch cifs-use-simple_prepare_write-to-zero-page-data.patch git-gfs2-nmw.patch nfs-use-zero_user_page.patch git-ocfs2.patch xfs-use-zero_user_page.patch ext4-use-simple_prepare_write-to-zero-page-data.patch ext4-use-zero_user_page.patch ecryptfs-use-zero_user_page.patch reiser4.patch reiser4-use-zero_user_page.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