Whamcloud - gitweb
b=17310
[fs/lustre-release.git] / lustre / ptlrpc / client.c
index cbfcc5b..165dd29 100644 (file)
@@ -1521,8 +1521,7 @@ int ptlrpc_expired_set(void *data)
                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
 
                 /* Request in-flight? */
-                if (!((req->rq_phase & 
-                       (RQ_PHASE_RPC | RQ_PHASE_UNREGISTERING) &&
+                if (!((req->rq_phase == RQ_PHASE_RPC &&
                        !req->rq_waiting && !req->rq_resend) ||
                       (req->rq_phase == RQ_PHASE_BULK)))
                         continue;
@@ -1591,23 +1590,12 @@ int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
                 /* 
                  * Request in-flight? 
                  */
-                if (!(((req->rq_phase & 
-                        (RQ_PHASE_RPC | RQ_PHASE_UNREGISTERING)) && 
-                       !req->rq_waiting) ||
+                if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
                       (req->rq_phase == RQ_PHASE_BULK) ||
                       (req->rq_phase == RQ_PHASE_NEW)))
                         continue;
 
                 /* 
-                 * Check those waiting for long reply unlink every one 
-                 * second. 
-                 */
-                if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
-                        timeout = 1;
-                        break;
-                }
-
-                /* 
                  * Already timed out. 
                  */
                 if (req->rq_timedout)