From: jacob Date: Fri, 20 May 2005 20:47:48 +0000 (+0000) Subject: print more useful things X-Git-Tag: v1_7_100~1^25~8^2~109 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=9adeae7778779ed04ab7eab3baa90ced9778594c;p=fs%2Flustre-release.git print more useful things --- diff --git a/lustre/ptlrpc/niobuf.c b/lustre/ptlrpc/niobuf.c index 73a5e47..6058318 100644 --- a/lustre/ptlrpc/niobuf.c +++ b/lustre/ptlrpc/niobuf.c @@ -229,7 +229,9 @@ int ptlrpc_register_bulk (struct ptlrpc_request *req) /* XXX Registering the same xid on retried bulk makes my head * explode trying to understand how the original request's bulk * might interfere with the retried request -eeb */ - LASSERT (!desc->bd_registered || req->rq_xid != desc->bd_last_xid); + LASSERTF (!desc->bd_registered || req->rq_xid != desc->bd_last_xid, + "registered: %d rq_xid: "LPU64" bd_last_xid: "LPU64"\n", + desc->bd_registered, req->rq_xid, desc->bd_last_xid); desc->bd_registered = 1; desc->bd_last_xid = req->rq_xid;