The patch titled Subject: fs/befs/linuxvfs.c: remove useless pr_err in befs_fill_super() has been removed from the -mm tree. Its filename was fs-befs-remove-useless-pr_err.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 pr_err in befs_fill_super() Remove pr_err since when kzalloc fails there is a generic out of memory and stack dump. Link: http://lkml.kernel.org/r/c5a7f2d42ec0fc8465c118248e88cd221c483391.1464226521.git.salah.triki@xxxxxxx Signed-off-by: Salah Triki <salah.triki@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/befs/linuxvfs.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff -puN fs/befs/linuxvfs.c~fs-befs-remove-useless-pr_err fs/befs/linuxvfs.c --- a/fs/befs/linuxvfs.c~fs-befs-remove-useless-pr_err +++ a/fs/befs/linuxvfs.c @@ -764,11 +764,9 @@ befs_fill_super(struct super_block *sb, save_mount_options(sb, data); sb->s_fs_info = kzalloc(sizeof(*befs_sb), GFP_KERNEL); - if (sb->s_fs_info == NULL) { - pr_err("(%s): Unable to allocate memory for private " - "portion of superblock. Bailing.\n", sb->s_id); + if (sb->s_fs_info == NULL) goto unacquire_none; - } + befs_sb = BEFS_SB(sb); if (!parse_options((char *) data, &befs_sb->mount_opts)) { _ 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