summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-08-20 18:42:05 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-08-20 18:42:05 (GMT)
commit2f680fea22ec9a671e8d1145502499a0d51a4890 (patch)
treedf3e4c9cf3cdbf373c729b6817f31165b6a7b85e
parent82e12143f97fbe9ce09f137004e3118fb745f28e (diff)
downloadhdf5-2f680fea22ec9a671e8d1145502499a0d51a4890.zip
hdf5-2f680fea22ec9a671e8d1145502499a0d51a4890.tar.gz
hdf5-2f680fea22ec9a671e8d1145502499a0d51a4890.tar.bz2
[svn-r4397] Purpose:
Bug fix Description: SAF test code exposed an error in the HDF5_MPI_OPT_TYPES code. The SAF code was doing collective write to chunked storage dataset. Some processes wanted to flush some chunk while some other processes were doing something else but the HDF5_MPI_OPT_TYPES code thought the chunk flushing were collective calls since it only looked at the condition when H5Dwrite was called. So, it hanged when doing MPI_File_setview. For now, turned off the HDF5_MPI_OPT_TYPES code so that the SAF code would work. More long term fix later. Platforms tested: modi4(pp)
-rw-r--r--src/H5S.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5S.c b/src/H5S.c
index 5e644ef..c511276 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -44,7 +44,7 @@ static size_t H5S_nconv_g = 0; /*entries used*/
#ifdef H5_HAVE_PARALLEL
/* Global var whose value comes from environment variable */
-hbool_t H5_mpi_opt_types_g = TRUE;
+hbool_t H5_mpi_opt_types_g = FALSE;
#endif
/* Declare a free list to manage the H5S_simple_t struct */