[Pvfs2-cvs] commit by kunkel in pvfs2/src/server: create.sm io.sm

CVS commit program cvs at parl.clemson.edu
Mon Aug 21 05:29:30 EDT 2006


Update of /projects/cvsroot/pvfs2/src/server
In directory parlweb1:/tmp/cvs-serv19562/src/server

Modified Files:
      Tag: kunkel-branch
	create.sm io.sm 
Log Message:
Add pvfs2 client core / kernel modul support for hints.


Index: create.sm
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/server/create.sm,v
diff -p -u -r1.41.2.1 -r1.41.2.2
--- create.sm	19 Aug 2006 13:09:39 -0000	1.41.2.1
+++ create.sm	21 Aug 2006 09:29:30 -0000	1.41.2.2
@@ -87,7 +87,7 @@ static int create_create(PINT_server_op 
 	request_id = PVFS_get_hint( s_op->req->hints,
 		REQUEST_ID);
 	if(request_id != NULL){
-		gossip_err("Request ID received %s\n", request_id);
+		gossip_err("Create request ID received: %s\n", request_id);
 	}
 
     ret = job_trove_dspace_create(

Index: io.sm
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/server/io.sm,v
diff -p -u -r1.62.6.1 -r1.62.6.2
--- io.sm	18 Aug 2006 05:12:17 -0000	1.62.6.1
+++ io.sm	21 Aug 2006 09:29:30 -0000	1.62.6.2
@@ -113,7 +113,14 @@ static int io_send_ack(PINT_server_op *s
     int err = -PVFS_EIO;
     job_id_t tmp_id;
     struct server_configuration_s *user_opts = get_server_config_struct();
-        
+    
+    const char * request_id;
+    request_id = PVFS_get_hint( s_op->req->hints,
+        REQUEST_ID);
+    if(request_id != NULL){
+        gossip_err("I/O request ID received: %s\n", request_id);
+    }        
+    
     /* this is where we report the file size to the client before
      * starting the I/O transfer, or else report an error if we
      * failed to get the size, or failed for permission reasons



More information about the Pvfs2-cvs mailing list