diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-06 17:43:42 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-06 17:43:42 (GMT) |
commit | 52ebd222175ca3b2f66edbd0b9406d73b79b6100 (patch) | |
tree | 1355423f511639468929169bcbfc887e916812d0 /perform/pio_engine.c | |
parent | 3e982207dd568c08cb37f1df2828572ce5dcbfc7 (diff) | |
download | hdf5-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/pio_engine.c')
-rw-r--r-- | perform/pio_engine.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perform/pio_engine.c b/perform/pio_engine.c index 8af34a1..b78dfd7 100644 --- a/perform/pio_engine.c +++ b/perform/pio_engine.c @@ -1455,7 +1455,8 @@ do_fopen(parameters *param, char *fname, file_descr *fd /*out*/, int flags) { int ret_code = SUCCESS, mrc; herr_t hrc; - hid_t acc_tpl = -1; /* file access templates */ + hid_t acc_tpl = -1; /* file access templates */ + hbool_t use_gpfs = FALSE; /* use GPFS hints */ switch (param->io_type) { case POSIXIO: @@ -1523,7 +1524,7 @@ do_fopen(parameters *param, char *fname, file_descr *fd /*out*/, int flags) /* Use the appropriate VFL driver */ if(param->h5_use_mpi_posix) { /* Set the file driver to the MPI-posix driver */ - hrc = H5Pset_fapl_mpiposix(acc_tpl, pio_comm_g); + hrc = H5Pset_fapl_mpiposix(acc_tpl, pio_comm_g, use_gpfs); if (hrc < 0) { fprintf(stderr, "HDF5 Property List Set failed\n"); GOTOERROR(FAIL); |