The patch titled __page_symlink retry loop error code fix has been removed from the -mm tree. Its filename was mm-__page_symlink-retry-loop-error-code-fix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: __page_symlink retry loop error code fix From: Dmitriy Monakhov <dmonakhov@xxxxxxxxxx> If prepare_write or commit_write return AOP_TRUNCATED_PAGE we jump to "retry" label and than if find_or_create_page() failed function return incorrect error code. Signed-off-by: Dmitriy Monakhov <dmonakhov@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/namei.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN fs/namei.c~mm-__page_symlink-retry-loop-error-code-fix fs/namei.c --- a/fs/namei.c~mm-__page_symlink-retry-loop-error-code-fix +++ a/fs/namei.c @@ -2688,10 +2688,11 @@ int __page_symlink(struct inode *inode, { struct address_space *mapping = inode->i_mapping; struct page *page; - int err = -ENOMEM; + int err; char *kaddr; retry: + err = -ENOMEM; page = find_or_create_page(mapping, 0, gfp_mask); if (!page) goto fail; _ Patches currently in -mm which might be from dmonakhov@xxxxxxxxxx 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