The patch titled check_partition(): fix error check has been removed from the -mm tree. Its filename was check_partition-fix-error-check.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: check_partition(): fix error check From: suzuki <suzuki@xxxxxxxxxx> Fix inverted check introduced in 57881dd9df40b76dc7fc6a0d13fd75f337accb32 "Fix check_partition routines". Signed-off-by: Suzuki K P <suzuki@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/partitions/check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/partitions/check.c~check_partition-fix-error-check fs/partitions/check.c --- a/fs/partitions/check.c~check_partition-fix-error-check +++ a/fs/partitions/check.c @@ -180,7 +180,7 @@ check_partition(struct gendisk *hd, stru } if (res > 0) return state; - if (!err) + if (err) /* The partition is unrecognized. So report I/O errors if there were any */ res = err; if (!res) _ Patches currently in -mm which might be from suzuki@xxxxxxxxxx are origin.patch fix-rescan_partitions-to-return-errors-properly.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