From: ericm Date: Fri, 4 Sep 2009 14:35:47 +0000 (+0000) Subject: branch: b1_8 X-Git-Tag: v1_8_2_01~1^2~136 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=7d0b4175f1b4066de6df405f839dc57e2a3e773a;p=fs%2Flustre-release.git branch: b1_8 OBD_FAIL_PTLRPC_PAUSE_REQ to ignore ping. b=13520 r=nathan r=wangdi --- diff --git a/lustre/ptlrpc/service.c b/lustre/ptlrpc/service.c index 2a79d39..b062a03 100644 --- a/lustre/ptlrpc/service.c +++ b/lustre/ptlrpc/service.c @@ -1340,7 +1340,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);