@@ -381,6 +381,7 @@
#define OBD_FAIL_OBDCLASS_MODULE_LOAD 0x60a
#define OBD_FAIL_OBD_ZERO_NLINK_RACE 0x60b
#define OBD_FAIL_OBD_SETUP 0x60d
+#define OBD_FAIL_OBD_CLEANUP 0x60e
#define OBD_FAIL_TGT_REPLY_NET 0x700
#define OBD_FAIL_TGT_CONN_RACE 0x701
@@ -1377,10 +1377,15 @@ void ll_put_super(struct super_block *sb)
client_common_put_super(sb);
}
+ /* imitate failed cleanup */
+ if (OBD_FAIL_CHECK(OBD_FAIL_OBD_CLEANUP))
+ goto skip_cleanup;
+
next = 0;
while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)))
class_manual_cleanup(obd);
+skip_cleanup:
if (test_bit(LL_SBI_VERBOSE, sbi->ll_flags))
LCONSOLE_WARN("Unmounted %s\n", profilenm ? profilenm : "");
@@ -520,7 +520,6 @@ static int lmv_disconnect(struct obd_export *exp)
struct obd_device *obd = class_exp2obd(exp);
struct lmv_obd *lmv = &obd->u.lmv;
struct lmv_tgt_desc *tgt;
- int rc;
lmv_foreach_connected_tgt(lmv, tgt)
lmv_disconnect_mdc(obd, tgt);
@@ -528,11 +527,8 @@ static int lmv_disconnect(struct obd_export *exp)
if (lmv->lmv_tgts_kobj)
kobject_put(lmv->lmv_tgts_kobj);
- if (!lmv->connected)
- class_export_put(exp);
- rc = class_disconnect(exp);
lmv->connected = 0;
- return rc;
+ return class_disconnect(exp);
}
static int lmv_fid2path(struct obd_export *exp, int len, void *karg,
@@ -1147,6 +1143,11 @@ static int lmv_cleanup(struct obd_device *obd)
struct lu_tgt_desc *tmp;
fld_client_fini(&lmv->lmv_fld);
+ fld_client_debugfs_fini(&lmv->lmv_fld);
+
+ lprocfs_obd_cleanup(obd);
+ ldebugfs_free_md_stats(obd);
+
lmv_foreach_tgt_safe(lmv, tgt, tmp)
lmv_del_target(lmv, tgt);
lu_tgt_descs_fini(&lmv->lmv_mdt_descs);
@@ -3063,9 +3064,6 @@ static int lmv_unlink(struct obd_export *exp, struct md_op_data *op_data,
static int lmv_precleanup(struct obd_device *obd)
{
libcfs_kkuc_group_rem(&obd->obd_uuid, 0, KUC_GRP_HSM);
- fld_client_debugfs_fini(&obd->u.lmv.lmv_fld);
- lprocfs_obd_cleanup(obd);
- ldebugfs_free_md_stats(obd);
return 0;
}
@@ -313,8 +313,14 @@ static int lov_disconnect(struct obd_export *exp)
goto out;
/* Only disconnect the underlying layers on the final disconnect. */
+ if (lov->lov_connects == 0) {
+ CWARN("%s: was disconnected already #%d\n",
+ obd->obd_name, lov->lov_connects);
+ return 0;
+ }
+
lov->lov_connects--;
- if (lov->lov_connects != 0) {
+ if (lov->lov_connects > 0) {
/* why should there be more than 1 connect? */
CWARN("%s: unexpected disconnect #%d\n",
obd->obd_name, lov->lov_connects);
@@ -2959,11 +2959,10 @@ static int mdc_precleanup(struct obd_device *obd)
osc_precleanup_common(obd);
mdc_changelog_cdev_finish(obd);
-
- obd_cleanup_client_import(obd);
- ptlrpc_lprocfs_unregister_obd(obd);
- ldebugfs_free_md_stats(obd);
mdc_llog_finish(obd);
+ ldebugfs_free_md_stats(obd);
+ ptlrpc_lprocfs_unregister_obd(obd);
+
return 0;
}