[PVFS2-CVS] commit by neill in pvfs2/src/apps/kernel/linux: pvfs2-client-core.c

CVS commit program cvs at parl.clemson.edu
Tue Jul 6 11:59:04 EDT 2004


Update of /projects/cvsroot/pvfs2/src/apps/kernel/linux
In directory parlweb:/tmp/cvs-serv2355/src/apps/kernel/linux

Modified Files:
      Tag: pvfs2-nm-nb-branch
	pvfs2-client-core.c 
Log Message:
- hopefully the last of the 64 bit tags being used improperly as unsigned
  longs by the vfs/client-core


Index: pvfs2-client-core.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/apps/kernel/linux/pvfs2-client-core.c,v
diff -p -u -r1.2.2.10 -r1.2.2.11
--- pvfs2-client-core.c	1 Jul 2004 21:44:22 -0000	1.2.2.10
+++ pvfs2-client-core.c	6 Jul 2004 14:59:04 -0000	1.2.2.11
@@ -145,8 +145,7 @@ do {                                    
     list_size = 1;                                            \
     ret = write_device_response(                              \
         buffer_list,size_list,list_size, total_size,          \
-        (PVFS_id_gen_t)vfs_request->info.tag,                 \
-        &vfs_request->op_id,                                  \
+        vfs_request->info.tag, &vfs_request->op_id,           \
         &vfs_request->jstat, s_client_dev_context);           \
     if (ret < 0)                                              \
     {                                                         \
@@ -1647,7 +1646,7 @@ int process_vfs_requests(void)
 
                     ret = write_device_response(
                         buffer_list,size_list,list_size, total_size,
-                        (PVFS_id_gen_t)vfs_request->info.tag,
+                        vfs_request->info.tag,
                         &vfs_request->op_id, &vfs_request->jstat,
                         s_client_dev_context);
 



More information about the PVFS2-CVS mailing list