From 42cb568940aa3dd825a1afb1b5bcf795c4ca373d Mon Sep 17 00:00:00 2001 From: eeb Date: Thu, 22 May 2003 11:39:11 +0000 Subject: [PATCH] * New protocol version 0x00040001 * Merged pagesize independent niobufs * Single READ result (# bytes read or error) * Per niobuf WRITE results * Single XID for all RPCs types, including bulk (bulk uses a different portal) * XID properly 64 bit. * 8 byte handles (lustre_handle::addr no longer used) * Removed field order dependence of niobuf_{local,remote} * Simplified bulk_desc usage --- lustre/obdclass/debug.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lustre/obdclass/debug.c b/lustre/obdclass/debug.c index 0650329..f824b98 100644 --- a/lustre/obdclass/debug.c +++ b/lustre/obdclass/debug.c @@ -43,8 +43,8 @@ int dump_ioo(struct obd_ioobj *ioo) int dump_lniobuf(struct niobuf_local *nb) { - CERROR("niobuf_local: offset="LPD64", len=%d, xid=%d, page=%p\n", - nb->offset, nb->len, nb->xid, nb->page); + CERROR("niobuf_local: offset="LPD64", len=%d, page=%p, rc=%d\n", + nb->offset, nb->len, nb->page, nb->rc); CERROR("nb->page: index = %ld\n", nb->page ? nb->page->index : -1); return -EINVAL; @@ -52,8 +52,8 @@ int dump_lniobuf(struct niobuf_local *nb) int dump_rniobuf(struct niobuf_remote *nb) { - CERROR("niobuf_remote: offset="LPU64", len=%d, flags=%x, xid=%d\n", - nb->offset, nb->len, nb->flags, nb->xid); + CERROR("niobuf_remote: offset="LPU64", len=%d, flags=%x\n", + nb->offset, nb->len, nb->flags); return -EINVAL; } -- 1.8.3.1