summaryrefslogtreecommitdiffstats
path: root/perform/benchpar.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-05-06 17:43:42 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-05-06 17:43:42 (GMT)
commit52ebd222175ca3b2f66edbd0b9406d73b79b6100 (patch)
tree1355423f511639468929169bcbfc887e916812d0 /perform/benchpar.c
parent3e982207dd568c08cb37f1df2828572ce5dcbfc7 (diff)
downloadhdf5-52ebd222175ca3b2f66edbd0b9406d73b79b6100.zip
hdf5-52ebd222175ca3b2f66edbd0b9406d73b79b6100.tar.gz
hdf5-52ebd222175ca3b2f66edbd0b9406d73b79b6100.tar.bz2
[svn-r6806] Purpose:
Bug Fix Description: When I changed the H5P{set,get}_fapl_mpiposix functions to accept another parameter, I didn't change it in these files. Solution: Added the new "use_gpfs" parameter. Platforms tested: Modi4 (only affects the parallel stuff, so no need for full testing). Misc. update:
Diffstat (limited to 'perform/benchpar.c')
-rw-r--r--perform/benchpar.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/perform/benchpar.c b/perform/benchpar.c
index 86f6526..5253263 100644
--- a/perform/benchpar.c
+++ b/perform/benchpar.c
@@ -76,8 +76,9 @@ static hid_t create_fcpl(void)
/* Create & initialize file access property list with appropriate properties */
static hid_t create_fapl(MPI_Comm comm, MPI_Info info, int acc_type )
{
- hid_t fapl; /* File access property list */
- herr_t ret; /* Generic return value */
+ hid_t fapl; /* File access property list */
+ hbool_t use_gpfs = FALSE; /* Use GPFS hints */
+ herr_t ret; /* Generic return value */
fapl = H5Pcreate (H5P_FILE_ACCESS);
assert(fapl>0);
@@ -90,7 +91,7 @@ static hid_t create_fapl(MPI_Comm comm, MPI_Info info, int acc_type )
/* set parallel access with communicator, using MPI-posix driver */
if (acc_type == FACC_MPIPOSIX) {
- ret = H5Pset_fapl_mpiposix(fapl, comm);
+ ret = H5Pset_fapl_mpiposix(fapl, comm, use_gpfs);
assert(ret>=0);
} /* end if */