The patch titled Subject: init-do_mounts-add-create_dev-failure-log-fix has been removed from the -mm tree. Its filename was init-do_mounts-add-create_dev-failure-log-fix.patch This patch was dropped because it was folded into init-do_mounts-add-create_dev-failure-log.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: init-do_mounts-add-create_dev-failure-log-fix simplify printk(), use pr_emerg(), display errno Cc: Dan Ehrenberg <dehrenberg@xxxxxxxxxxxx> Cc: Mike Snitzer <snitzer@xxxxxxxxxx> Cc: Miklos Szeredi <mszeredi@xxxxxxx> Cc: Paul Gortmaker <paul.gortmaker@xxxxxxxxxxxxx> Cc: Pavel Machek <pavel@xxxxxx> Cc: Vishnu Pratap Singh <vishnu.ps@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- init/do_mounts.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff -puN init/do_mounts.c~init-do_mounts-add-create_dev-failure-log-fix init/do_mounts.c --- a/init/do_mounts.c~init-do_mounts-add-create_dev-failure-log-fix +++ a/init/do_mounts.c @@ -533,9 +533,13 @@ void __init mount_root(void) } #endif #ifdef CONFIG_BLOCK - if (create_dev("/dev/root", ROOT_DEV) < 0) - pr_err("Failed to create %s device !\n", "/dev/root"); - mount_block_root("/dev/root", root_mountflags); + { + int err = create_dev("/dev/root", ROOT_DEV); + + if (err < 0) + pr_emerg("Failed to create /dev/root: %d\n", err); + mount_block_root("/dev/root", root_mountflags); + } #endif } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch s390-mm-change-hpage_shift-type-to-int.patch zswap-runtime-enable-disable.patch prctl-more-prctlpr_set_mm_-checks.patch proc-fix-page_size-limit-of-proc-pid-cmdline.patch maintainers-davidlohr-has-moved.patch bitmap-remove-explicit-newline-handling-using-scnprintf-format-string.patch radix-tree-replace-preallocated-node-array-with-linked-list.patch checkpatch-emit-an-error-when-theres-a-diff-in-a-changelog.patch init-do_mounts-add-create_dev-failure-log.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