From: Eric Mei Date: Fri, 12 Feb 2010 18:48:08 +0000 (-0700) Subject: b=13520 PTLRPC_PAUSE_REQ checking should ignore PING. X-Git-Tag: v1_8_2_50~6 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=260b00f5277f1db3fb9abadb1756538738996e43;p=fs%2Flustre-release.git b=13520 PTLRPC_PAUSE_REQ checking should ignore PING. r=nathan r=wangdi --- diff --git a/lustre/ptlrpc/service.c b/lustre/ptlrpc/service.c index 16f3c93..5445bb6 100644 --- a/lustre/ptlrpc/service.c +++ b/lustre/ptlrpc/service.c @@ -1361,7 +1361,8 @@ ptlrpc_server_handle_request(struct ptlrpc_service *svc, libcfs_id2str(request->rq_peer), lustre_msg_get_opc(request->rq_reqmsg)); - OBD_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_PAUSE_REQ, obd_fail_val); + if (lustre_msg_get_opc(request->rq_reqmsg) != OBD_PING) + OBD_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_PAUSE_REQ, obd_fail_val); rc = svc->srv_handler(request);