From 9adeae7778779ed04ab7eab3baa90ced9778594c Mon Sep 17 00:00:00 2001 From: jacob Date: Fri, 20 May 2005 20:47:48 +0000 Subject: [PATCH] print more useful things --- lustre/ptlrpc/niobuf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 1.8.3.1