Skip to content
Snippets Groups Projects
Commit bb5c8e25 authored by Robert Read's avatar Robert Read
Browse files

b=2460

r=phil

Make sure threads waiting for a completion callback are awoken when
the client is evicted. Also set LDLM_FL_CANCEL explicitely in
cleanup_resouces, so callers of ldmm_namespace_cleanup no
longer need to specify it.
parent 9c563fe3
No related merge requests found
...@@ -120,7 +120,7 @@ noreproc: ...@@ -120,7 +120,7 @@ noreproc:
/* Go to sleep until the lock is granted or cancelled. */ /* Go to sleep until the lock is granted or cancelled. */
rc = l_wait_event(lock->l_waitq, rc = l_wait_event(lock->l_waitq,
((lock->l_req_mode == lock->l_granted_mode) || ((lock->l_req_mode == lock->l_granted_mode) ||
lock->l_destroyed), &lwi); (lock->l_flags & LDLM_FL_CANCEL)), &lwi);
if (lock->l_destroyed) { if (lock->l_destroyed) {
LDLM_DEBUG(lock, "client-side enqueue waking up: destroyed"); LDLM_DEBUG(lock, "client-side enqueue waking up: destroyed");
......
...@@ -283,6 +283,9 @@ static void cleanup_resource(struct ldlm_resource *res, struct list_head *q, ...@@ -283,6 +283,9 @@ static void cleanup_resource(struct ldlm_resource *res, struct list_head *q,
lock = list_entry(tmp, struct ldlm_lock, l_res_link); lock = list_entry(tmp, struct ldlm_lock, l_res_link);
LDLM_LOCK_GET(lock); LDLM_LOCK_GET(lock);
lock->l_flags |= LDLM_FL_CANCEL;
lock->l_flags |= flags;
if (local_only && (lock->l_readers || lock->l_writers)) { if (local_only && (lock->l_readers || lock->l_writers)) {
/* This is a little bit gross, but much better than the /* This is a little bit gross, but much better than the
* alternative: pretend that we got a blocking AST from * alternative: pretend that we got a blocking AST from
...@@ -291,16 +294,13 @@ static void cleanup_resource(struct ldlm_resource *res, struct list_head *q, ...@@ -291,16 +294,13 @@ static void cleanup_resource(struct ldlm_resource *res, struct list_head *q,
lock->l_flags |= LDLM_FL_CBPENDING; lock->l_flags |= LDLM_FL_CBPENDING;
/* ... without sending a CANCEL message. */ /* ... without sending a CANCEL message. */
lock->l_flags |= LDLM_FL_LOCAL_ONLY; lock->l_flags |= LDLM_FL_LOCAL_ONLY;
/* caller may also specify additional flags */
lock->l_flags |= flags;
LDLM_DEBUG(lock, "setting FL_LOCAL_ONLY"); LDLM_DEBUG(lock, "setting FL_LOCAL_ONLY");
if (lock->l_completion_ast)
lock->l_completion_ast(lock, 0, NULL);
LDLM_LOCK_PUT(lock); LDLM_LOCK_PUT(lock);
continue; continue;
} }
lock->l_flags |= flags;
if (client) { if (client) {
struct lustre_handle lockh; struct lustre_handle lockh;
ldlm_lock2handle(lock, &lockh); ldlm_lock2handle(lock, &lockh);
...@@ -377,7 +377,7 @@ int ldlm_namespace_free(struct ldlm_namespace *ns, int force) ...@@ -377,7 +377,7 @@ int ldlm_namespace_free(struct ldlm_namespace *ns, int force)
spin_unlock(&ldlm_namespace_lock); spin_unlock(&ldlm_namespace_lock);
/* At shutdown time, don't call the cancellation callback */ /* At shutdown time, don't call the cancellation callback */
ldlm_namespace_cleanup(ns, LDLM_FL_CANCEL); ldlm_namespace_cleanup(ns, 0);
#ifdef __KERNEL__ #ifdef __KERNEL__
{ {
......
...@@ -225,7 +225,7 @@ inline void ptlrpc_invalidate_import_state(struct obd_import *imp) ...@@ -225,7 +225,7 @@ inline void ptlrpc_invalidate_import_state(struct obd_import *imp)
obd_invalidate_import(obd, imp); obd_invalidate_import(obd, imp);
#endif #endif
ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY | LDLM_FL_CANCEL); ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
} }
void ptlrpc_handle_failed_import(struct obd_import *imp) void ptlrpc_handle_failed_import(struct obd_import *imp)
......
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