From: suzuki Date: Thu, 8 Mar 2007 04:41:24 +0000 (-0800) Subject: [PATCH] check_partition(): fix error check X-Git-Tag: v2.6.21-rc4~86 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9bebff6ca5871e07b665cdaf71028ea21eb0bf0e;p=karo-tx-linux.git [PATCH] check_partition(): fix error check Fix inverted check introduced in 57881dd9df40b76dc7fc6a0d13fd75f337accb32 "Fix check_partition routines". Signed-off-by: Suzuki K P Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/partitions/check.c b/fs/partitions/check.c index 22d38ffc9ef0..e46d237b10f9 100644 --- a/fs/partitions/check.c +++ b/fs/partitions/check.c @@ -180,7 +180,7 @@ check_partition(struct gendisk *hd, struct block_device *bdev) } 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)