Skip to content
Snippets Groups Projects
Commit 1ce1b33d authored by Yury Umanets's avatar Yury Umanets
Browse files

- revert patch from 17110 as it's causing ost stop issues

parent b0bb5deb
No related branches found
No related tags found
No related merge requests found
...@@ -552,6 +552,11 @@ int llog_obd_repl_cancel(struct llog_ctxt *ctxt, ...@@ -552,6 +552,11 @@ int llog_obd_repl_cancel(struct llog_ctxt *ctxt,
GOTO(out, rc = -ENODEV); GOTO(out, rc = -ENODEV);
} }
if (ctxt->loc_obd->obd_stopping) {
CDEBUG(D_RPCTRACE, "Obd is stopping for ctxt %p\n", ctxt);
GOTO(out, rc = -ENODEV);
}
if (test_bit(LLOG_LCM_FL_EXIT, &lcm->lcm_flags)) { if (test_bit(LLOG_LCM_FL_EXIT, &lcm->lcm_flags)) {
CDEBUG(D_RPCTRACE, "Commit thread is stopping for ctxt %p\n", CDEBUG(D_RPCTRACE, "Commit thread is stopping for ctxt %p\n",
ctxt); ctxt);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment