The patch titled Subject: fs/befs/linuxvfs.c: remove useless befs_error has been removed from the -mm tree. Its filename was fs-befs-remove-useless-befs_error.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Salah Triki <salah.triki@xxxxxxx> Subject: fs/befs/linuxvfs.c: remove useless befs_error Remove befs_error since when kmalloc fails there is a generic out of memory and stack dump. Link: http://lkml.kernel.org/r/3de4d388d98bbb570462a5eb8e64623e17fb5d74.1464226521.git.salah.triki@xxxxxxx Signed-off-by: Salah Triki <salah.triki@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/befs/linuxvfs.c | 2 -- 1 file changed, 2 deletions(-) diff -puN fs/befs/linuxvfs.c~fs-befs-remove-useless-befs_error fs/befs/linuxvfs.c --- a/fs/befs/linuxvfs.c~fs-befs-remove-useless-befs_error +++ a/fs/befs/linuxvfs.c @@ -524,7 +524,6 @@ befs_utf2nls(struct super_block *sb, con *out = result = kmalloc(maxlen, GFP_NOFS); if (!*out) { - befs_error(sb, "%s cannot allocate memory", __func__); *out_len = 0; return -ENOMEM; } @@ -604,7 +603,6 @@ befs_nls2utf(struct super_block *sb, con *out = result = kmalloc(maxlen, GFP_NOFS); if (!*out) { - befs_error(sb, "%s cannot allocate memory", __func__); *out_len = 0; return -ENOMEM; } _ Patches currently in -mm which might be from salah.triki@xxxxxxx are -- 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