Skip to content
Snippets Groups Projects
Commit 2b441847 authored by Wang Di's avatar Wang Di
Browse files

Branch: b1_6

obd_set_up should also be checked in llog_cleanup.
b=14477
i=deen,adilger
parent ee2c39ad
No related branches found
No related tags found
No related merge requests found
...@@ -181,6 +181,14 @@ Details : mds_open improperly used accmode to find out access mode to a ...@@ -181,6 +181,14 @@ Details : mds_open improperly used accmode to find out access mode to a
skiplists - locks are now added to the front of the granted skiplists - locks are now added to the front of the granted
queue. queue.
Severity : normal
Bugzilla : 14477
Description: Hit ASSERTION(obd->obd_stopping == 1) failed in some setup failed
situation.
Details : In obd setup failure handler, obd_stopping will not necessarily to
be 1, and obd_set_up should also be checked to make sure whether
obd is completely setup.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
2007-12-07 Cluster File Systems, Inc. <info@clusterfs.com> 2007-12-07 Cluster File Systems, Inc. <info@clusterfs.com>
......
...@@ -74,7 +74,7 @@ int __llog_ctxt_put(struct llog_ctxt *ctxt) ...@@ -74,7 +74,7 @@ int __llog_ctxt_put(struct llog_ctxt *ctxt)
obd->obd_llog_ctxt[ctxt->loc_idx] = NULL; obd->obd_llog_ctxt[ctxt->loc_idx] = NULL;
spin_unlock(&obd->obd_dev_lock); spin_unlock(&obd->obd_dev_lock);
LASSERT(obd->obd_stopping == 1); LASSERT(obd->obd_stopping == 1 || obd->obd_set_up == 0);
/* cleanup the llog ctxt here */ /* cleanup the llog ctxt here */
if (CTXTP(ctxt, cleanup)) if (CTXTP(ctxt, cleanup))
rc = CTXTP(ctxt, cleanup)(ctxt); rc = CTXTP(ctxt, cleanup)(ctxt);
...@@ -102,7 +102,7 @@ int llog_cleanup(struct llog_ctxt *ctxt) ...@@ -102,7 +102,7 @@ int llog_cleanup(struct llog_ctxt *ctxt)
/* sync with other llog ctxt user thread */ /* sync with other llog ctxt user thread */
spin_lock(&obd->obd_dev_lock); spin_lock(&obd->obd_dev_lock);
LASSERT(obd->obd_stopping == 1); LASSERT(obd->obd_stopping == 1 || obd->obd_set_up == 0);
spin_unlock(&obd->obd_dev_lock); spin_unlock(&obd->obd_dev_lock);
idx = ctxt->loc_idx; idx = ctxt->loc_idx;
......
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