Whamcloud - gitweb
* New protocol version 0x00040001
authoreeb <eeb>
Thu, 22 May 2003 11:39:11 +0000 (11:39 +0000)
committereeb <eeb>
Thu, 22 May 2003 11:39:11 +0000 (11:39 +0000)
*   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

index 0650329..f824b98 100644 (file)
@@ -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;
 }