[PVFS2-CVS]
commit by slang in pvfs2/src/io/flow/flowproto-bmi-cache:
flowproto-bmi-cache-server.c
CVS commit program
cvs at parl.clemson.edu
Fri Nov 11 17:19:07 EST 2005
Update of /projects/cvsroot/pvfs2/src/io/flow/flowproto-bmi-cache
In directory parlweb:/tmp/cvs-serv2348/src/io/flow/flowproto-bmi-cache
Modified Files:
Tag: slang-sio-branch
flowproto-bmi-cache-server.c
Log Message:
fixes to small io stuff to get test-zero-fill working again. Also committing updates from HEAD to make things easier for merge.
Index: flowproto-bmi-cache-server.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/io/flow/flowproto-bmi-cache/flowproto-bmi-cache-server.c,v
diff -p -u -r1.12 -r1.12.6.1
--- flowproto-bmi-cache-server.c 7 Jul 2005 15:35:45 -0000 1.12
+++ flowproto-bmi-cache-server.c 11 Nov 2005 22:19:06 -0000 1.12.6.1
@@ -23,6 +23,7 @@
#include "trove.h"
#include "ncac-interface.h"
#include "internal.h"
+#include "pvfs2-internal.h"
#define BUFFER_SIZE (256*1024)
#define MAX_REGIONS 16
@@ -566,7 +567,7 @@ int bmi_cache_request_init(struct fp_pr
flow_data->total_bytes_processed = bytes_processed;
- fprintf(stderr, "bmi_cache_request_init: exit with return 0 (bytes_processed=%Ld)\n", Ld(bytes_processed));
+ fprintf(stderr, "bmi_cache_request_init: exit with return 0 (bytes_processed=%lld)\n", lld(bytes_processed));
return 0;
@@ -857,10 +858,10 @@ static void cache_write_callback_fn(void
total_size = 0;
for ( i=0; i<q_item->cache_req.mem_cnt; i++ ) {
total_size += q_item->cache_req.msize_list[i];
- fprintf(stderr, "cache_write_callback_fn:recv buff [%d] len:%Ld\n", i, Ld(q_item->cache_req.msize_list[i]));
+ fprintf(stderr, "cache_write_callback_fn:recv buff [%d] len:%lld\n", i, lld(q_item->cache_req.msize_list[i]));
q_item->cache_req.total_size = total_size;
}
- fprintf(stderr, "cache_write_callback_fn:to recv %Ld\n", Ld(q_item->cache_req.total_size));
+ fprintf(stderr, "cache_write_callback_fn:to recv %lld\n", lld(q_item->cache_req.total_size));
/* TODO: what if we recv less than expected? */
ret = BMI_post_recv_list(&bmi_reqid,
More information about the PVFS2-CVS
mailing list