From 9b1804d0f772e86e72a5d391840733b0bd27cec8 Mon Sep 17 00:00:00 2001 From: adilger Date: Mon, 10 Jun 2002 23:38:04 +0000 Subject: [PATCH] Add connid and xid to timeout messages. --- lustre/ptlrpc/client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lustre/ptlrpc/client.c b/lustre/ptlrpc/client.c index 30022cd..450ade1 100644 --- a/lustre/ptlrpc/client.c +++ b/lustre/ptlrpc/client.c @@ -248,7 +248,8 @@ static int ptlrpc_check_reply(struct ptlrpc_request *req) if (CURRENT_TIME - req->rq_time >= req->rq_timeout) { - CERROR("-- REQ TIMEOUT --\n"); + CERROR("-- REQ TIMEOUT ON CONNID %d XID %Ld --\n", + req->rq_connid, (unsigned long long)req->rq_xid); /* clear the timeout */ req->rq_timeout = 0; req->rq_connection->c_level = LUSTRE_CONN_RECOVD; -- 1.8.3.1