[PVFS2-CVS] commit by neill in pvfs2/src/proto: pvfs2-req-proto.h
CVS commit program
cvs at parl.clemson.edu
Fri Sep 3 11:57:03 EDT 2004
Update of /projects/cvsroot/pvfs2/src/proto
In directory parlweb:/tmp/cvs-serv30198/src/proto
Modified Files:
pvfs2-req-proto.h
Log Message:
- moved to fully 64 bit unsigned gossip masks
- setparam mgmt method now takes uint64_t values instead of int64_t
- added object type printing to acache debugging
- fixed bug in shared-state-machine getattr that could allow
attributes to come out of the acache with incorrect attr
types/fields
- fixed bug is msgpair setup for create/mkdir/symlink
- gossip mask change to uint64_t and many gossip cleanups
- misc cleanups
Index: pvfs2-req-proto.h
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/proto/pvfs2-req-proto.h,v
diff -p -u -r1.116 -r1.117
--- pvfs2-req-proto.h 24 Aug 2004 14:57:29 -0000 1.116
+++ pvfs2-req-proto.h 3 Sep 2004 14:57:03 -0000 1.117
@@ -862,14 +862,14 @@ endecode_fields_1_struct(
struct PVFS_servreq_mgmt_setparam
{
PVFS_fs_id fs_id; /* file system */
- enum PVFS_server_param param; /* paramter to set */
- int64_t value; /* parameter value */
+ enum PVFS_server_param param; /* parameter to set */
+ uint64_t value; /* parameter value */
};
endecode_fields_3_struct(
PVFS_servreq_mgmt_setparam,
PVFS_fs_id, fs_id,
enum, param,
- int64_t, value)
+ uint64_t, value)
#define PINT_SERVREQ_MGMT_SETPARAM_FILL(__req, \
__creds,\
@@ -887,11 +887,11 @@ do {
struct PVFS_servresp_mgmt_setparam
{
- int64_t old_value;
+ uint64_t old_value;
};
endecode_fields_1_struct(
PVFS_servresp_mgmt_setparam,
- int64_t, old_value)
+ uint64_t, old_value)
/* mgmt_noop ********************************************************/
/* - does nothing except contact a server to see if it is responding
More information about the PVFS2-CVS
mailing list