[PVFS2-CVS] commit by bradles in pvfs2/src/proto/contig: contig-request-d.c contig-request-e.c contig-response-d.c contig-response-e.c

CVS commit program cvs at parl.clemson.edu
Mon May 17 12:57:34 EDT 2004


Update of /projects/cvsroot/pvfs2/src/proto/contig
In directory styx.parl.clemson.edu:/tmp/cvs-serv15311/proto/contig

Modified Files:
	contig-request-d.c contig-request-e.c contig-response-d.c 
	contig-response-e.c 
Log Message:
Updates for distribution renamings.


Index: contig-request-d.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/proto/contig/contig-request-d.c,v
diff -p -u -r1.43 -r1.44
--- contig-request-d.c	13 May 2004 14:47:23 -0000	1.43
+++ contig-request-d.c	17 May 2004 15:57:34 -0000	1.44
@@ -117,7 +117,7 @@ int do_decode_req(
             if (dec_msg->u.setattr.attr.mask & PVFS_ATTR_META_DIST)
             {
                 dec_msg->u.setattr.attr.u.meta.dist = (PINT_dist *) char_ptr;
-                PINT_Dist_decode(dec_msg->u.setattr.attr.u.meta.dist, NULL);
+                PINT_dist_decode(dec_msg->u.setattr.attr.u.meta.dist, NULL);
             }
 	}
         else if (dec_msg->u.setattr.attr.objtype == PVFS_TYPE_SYMLINK)
@@ -150,8 +150,8 @@ int do_decode_req(
 	    free(dec_msg);
 	    return (ret);
 	}
-	PINT_Dist_decode(dec_msg->u.io.io_dist, NULL);
-	ret = PINT_Dist_lookup(dec_msg->u.io.io_dist);
+	PINT_dist_decode(dec_msg->u.io.io_dist, NULL);
+	ret = PINT_dist_lookup(dec_msg->u.io.io_dist);
 	if (ret < 0)
 	{
 	    free(dec_msg);

Index: contig-request-e.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/proto/contig/contig-request-e.c,v
diff -p -u -r1.54 -r1.55
--- contig-request-e.c	13 May 2004 14:47:23 -0000	1.54
+++ contig-request-e.c	17 May 2004 15:57:34 -0000	1.55
@@ -411,7 +411,7 @@ int do_encode_req(
             {
                 assert(request->u.setattr.attr.u.meta.dist != NULL);
                 
-                PINT_Dist_encode(enc_msg, request->u.setattr.attr.u.meta.dist);
+                PINT_dist_encode(enc_msg, request->u.setattr.attr.u.meta.dist);
             }
 	}
         else if (request->u.setattr.attr.objtype == PVFS_TYPE_SYMLINK)
@@ -482,7 +482,7 @@ int do_encode_req(
 	    return (ret);
 	}
 	/* pack the distribution */
-	PINT_Dist_encode(encode_io_dist, request->u.io.io_dist);
+	PINT_dist_encode(encode_io_dist, request->u.io.io_dist);
 	return (0);
 
 	/*these structures are all self contained (no pointers that need to be packed) */

Index: contig-response-d.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/proto/contig/contig-response-d.c,v
diff -p -u -r1.42 -r1.43
--- contig-response-d.c	13 May 2004 14:47:23 -0000	1.42
+++ contig-response-d.c	17 May 2004 15:57:34 -0000	1.43
@@ -107,7 +107,7 @@ int do_decode_resp(
             }
             if (decoded_response->u.getattr.attr.mask & PVFS_ATTR_META_DIST)
             {
-                PINT_Dist_decode(decoded_response->u.getattr.attr.u.meta.dist,
+                PINT_dist_decode(decoded_response->u.getattr.attr.u.meta.dist,
                                  NULL);
             }
 	}

Index: contig-response-e.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/proto/contig/contig-response-e.c,v
diff -p -u -r1.51 -r1.52
--- contig-response-e.c	7 May 2004 16:38:04 -0000	1.51
+++ contig-response-e.c	17 May 2004 15:57:34 -0000	1.52
@@ -140,7 +140,7 @@ int do_encode_resp(
                     pack_dest +=
                         (response->u.getattr.attr.u.meta.dfile_count
                          * sizeof(PVFS_handle));
-                    PINT_Dist_encode(pack_dest,
+                    PINT_dist_encode(pack_dest,
                                      response->u.getattr.attr.u.meta.dist);
                 }
             }



More information about the PVFS2-CVS mailing list