From cadb5540973c082e84a4cb0e0488968870800fc0 Mon Sep 17 00:00:00 2001 From: pschwan Date: Wed, 4 Sep 2002 00:09:00 +0000 Subject: [PATCH] Disable the reply type check until bluearc has a chance to integrate that fix. --- lustre/ptlrpc/client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lustre/ptlrpc/client.c b/lustre/ptlrpc/client.c index 437cbdc..1257adb 100644 --- a/lustre/ptlrpc/client.c +++ b/lustre/ptlrpc/client.c @@ -540,6 +540,8 @@ int ptlrpc_queue_wait(struct ptlrpc_request *req) CERROR("unpack_rep failed: %d\n", rc); GOTO(out, rc); } +#if 0 + /* FIXME: Enable when BlueArc makes new release */ if (req->rq_repmsg->type != PTL_RPC_MSG_REPLY && req->rq_repmsg->type != PTL_RPC_MSG_ERR) { CERROR("invalid packet type received (type=%u)\n", @@ -547,7 +549,7 @@ int ptlrpc_queue_wait(struct ptlrpc_request *req) LBUG(); GOTO(out, rc = -EINVAL); } - +#endif CDEBUG(D_NET, "got rep %Ld\n", req->rq_xid); if (req->rq_repmsg->status == 0) CDEBUG(D_NET, "--> buf %p len %d status %d\n", req->rq_repmsg, -- 1.8.3.1