[PVFS2-CVS] commit by slang in pvfs2/src/io/job: thread-mgr.c
CVS commit program
cvs at parl.clemson.edu
Fri Nov 11 17:19:07 EST 2005
Update of /projects/cvsroot/pvfs2/src/io/job
In directory parlweb:/tmp/cvs-serv2348/src/io/job
Modified Files:
Tag: slang-sio-branch
thread-mgr.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: thread-mgr.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/io/job/thread-mgr.c,v
diff -p -u -r1.26 -r1.26.2.1
--- thread-mgr.c 29 Sep 2005 22:28:57 -0000 1.26
+++ thread-mgr.c 11 Nov 2005 22:19:07 -0000 1.26.2.1
@@ -14,6 +14,7 @@
#include "gossip.h"
#include "bmi.h"
#include "trove.h"
+#include "pvfs2-internal.h"
#define THREAD_MGR_TEST_COUNT 5
#define THREAD_MGR_TEST_TIMEOUT 10
@@ -521,21 +522,21 @@ int PINT_thread_mgr_bmi_cancel(PVFS_id_g
* trying to cancel one of them
*/
#if 0
- gossip_err("THREAD MGR trying to cancel op: %Lu, ptr: %p.\n",
- Lu(id), user_ptr);
+ gossip_err("THREAD MGR trying to cancel op: %llu, ptr: %p.\n",
+ llu(id), user_ptr);
#endif
for(i=0; i<bmi_test_count; i++)
{
#if 0
- gossip_err("THREAD MGR bmi cancel scanning op: %Lu.\n",
- Lu(stat_bmi_id_array[i]));
+ gossip_err("THREAD MGR bmi cancel scanning op: %llu.\n",
+ llu(stat_bmi_id_array[i]));
#endif
if(stat_bmi_id_array[i] == id && stat_bmi_user_ptr_array[i] ==
user_ptr)
{
#if 0
- gossip_err("THREAD MGR bmi cancel SKIPPING op: %Lu.\n",
- Lu(stat_bmi_id_array[i]));
+ gossip_err("THREAD MGR bmi cancel SKIPPING op: %llu.\n",
+ llu(stat_bmi_id_array[i]));
#endif
/* match; no steps needed to cancel, the op is already done */
gen_mutex_unlock(&bmi_test_mutex);
@@ -664,15 +665,15 @@ int PINT_thread_mgr_trove_cancel(PVFS_id
for(i=0; i<trove_test_count; i++)
{
#if 0
- gossip_err("THREAD MGR trove cancel scanning op: %Lu.\n",
- Lu(stat_trove_id_array[i]));
+ gossip_err("THREAD MGR trove cancel scanning op: %llu.\n",
+ llu(stat_trove_id_array[i]));
#endif
if(stat_trove_id_array[i] == id && stat_trove_user_ptr_array[i] ==
user_ptr)
{
#if 0
- gossip_err("THREAD MGR trove cancel SKIPPING op: %Lu.\n",
- Lu(stat_trove_id_array[i]));
+ gossip_err("THREAD MGR trove cancel SKIPPING op: %llu.\n",
+ llu(stat_trove_id_array[i]));
#endif
/* match; no steps needed to cancel, the op is already done */
gen_mutex_unlock(&trove_test_mutex);
More information about the PVFS2-CVS
mailing list