From 5e79222b76133edc1b65c7edec916b17368a6ace Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 27 May 2005 13:38:44 +0000 Subject: [PATCH] b=6403 - additional debug mess(age?) to learn 6K depth open req queue on cnbuild --- lustre/ptlrpc/client.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lustre/ptlrpc/client.c b/lustre/ptlrpc/client.c index a21eae1..57009d4 100644 --- a/lustre/ptlrpc/client.c +++ b/lustre/ptlrpc/client.c @@ -1216,7 +1216,21 @@ void ptlrpc_free_committed(struct obd_import *imp) } if (req->rq_replay) { - DEBUG_REQ(D_HA, req, "keeping (FL_REPLAY)"); +#warning "REMOVE THIS CRAP ONCE 6403 SOLVED -bzzz" + struct mdc_open_data { + struct obd_client_handle *mod_och; + struct ptlrpc_request *mod_open_req; + struct ptlrpc_request *mod_close_req; + }; + struct mdc_open_data *mod = req->rq_cb_data; + if (mod == NULL || mod->mod_close_req == NULL) { + DEBUG_REQ(D_HA, req, "keeping (FL_REPLAY)"); + continue; + } + DEBUG_REQ(D_HA, req, "keeping (FL_REPLAY), " + "closed by x"LPD64"/t"LPD64, + mod->mod_close_req->rq_xid, + mod->mod_close_req->rq_repmsg->transno); continue; } -- 1.8.3.1