[Pvfs2-cvs] commit by sson in pvfs2/include: pvfs2-sysint.h

CVS commit program cvs at parl.clemson.edu
Mon Apr 20 17:10:50 EDT 2009


Update of /projects/cvsroot/pvfs2/include
In directory parlweb1:/tmp/cvs-serv30835/include

Modified Files:
      Tag: as-branch
	pvfs2-sysint.h 
Log Message:
Cleaned the data structures related to flow_d.




Index: pvfs2-sysint.h
===================================================================
RCS file: /projects/cvsroot/pvfs2/include/pvfs2-sysint.h,v
diff -p -u -r1.78 -r1.78.6.1
--- pvfs2-sysint.h	20 Nov 2008 01:16:43 -0000	1.78
+++ pvfs2-sysint.h	20 Apr 2009 21:10:49 -0000	1.78.6.1
@@ -474,8 +474,16 @@ PVFS_error PVFS_sys_io(
 #define PVFS_sys_read(x1,x2,x3,x4,x5,x6,y,z) \
 PVFS_sys_io(x1,x2,x3,x4,x5,x6,y,PVFS_IO_READ,z)
 
+/* sson: x7 (datatype), x8 (op), z is hint */
+#define PVFS_sys_read_ex(x1,x2,x3,x4,x5,x6,x7,x8,y,z)   \
+    PVFS_sys_io_ex(x1,x2,x3,x4,x5,x6,x7,x8,y,PVFS_IO_READ,z) /* sson */
+
 #define PVFS_sys_write(x1,x2,x3,x4,x5,x6,y,z) \
 PVFS_sys_io(x1,x2,x3,x4,x5,x6,y,PVFS_IO_WRITE,z)
+
+/* sson: z is hint */
+#define PVFS_sys_write_ex(x1,x2,x3,x4,x5,x6,x7,x8,y,z)  \
+    PVFS_sys_io_ex(x1,x2,x3,x4,x5,x6,x7,x8,y,PVFS_IO_WRITE,z) /* sson */
 
 PVFS_error PVFS_isys_truncate(
     PVFS_object_ref ref,



More information about the Pvfs2-cvs mailing list