[PATCH 8/8] dm: return correct error codes from dm_table_add_target()

Joe Thornber (joe@fib011235813.fsnet.co.uk)
Wed, 26 Feb 2003 17:13:35 +0000


Return correct error codes from dm_table_add_target(). [Kevin Corry]

--- diff/drivers/md/dm-table.c 2003-02-26 16:10:19.000000000 +0000
+++ source/drivers/md/dm-table.c 2003-02-26 16:10:24.000000000 +0000
@@ -591,7 +591,7 @@
tgt->type = dm_get_target_type(type);
if (!tgt->type) {
tgt->error = "unknown target type";
- return r;
+ return -EINVAL;
}

tgt->table = t;
@@ -604,6 +604,7 @@
*/
if (!adjoin(t, tgt)) {
tgt->error = "Gap in table";
+ r = -EINVAL;
goto bad;
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/