diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-10 17:11:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-10 17:11:06 (GMT) |
commit | 9815305745d7317d7bd6cee494a42bc2a62001c6 (patch) | |
tree | 313372cb935ed20093a2fbc7405a9ebffa1ae9bc /src/H5Gnode.c | |
parent | dabf67548199453f923ea751d7978e7382377ef9 (diff) | |
download | hdf5-9815305745d7317d7bd6cee494a42bc2a62001c6.zip hdf5-9815305745d7317d7bd6cee494a42bc2a62001c6.tar.gz hdf5-9815305745d7317d7bd6cee494a42bc2a62001c6.tar.bz2 |
[svn-r5390] Purpose:
Code cleanup
Description:
The parallel I/O file driver is optimized to only write metadata with one
process (and broadcast the results to the other processes). This is
currently enabled by a separate call to H5FD_mpio_tas_allsame() before
each metadata write to the file. This can easily lead to problems where
the prelude function call is omitted before the actual write code or, in
a threaded environment, lead to race condititions where the value set is
reset before being used.
Solution:
Since we only want to write metadata from one process, key off of the 'type'
parameter (which has information about whether the data being written it
metadata or raw data) to H5FD_mpio_write() as the method for determining
whether to only write from one process or not.
Platforms tested:
IRIX64 6.5 (modi4)
Diffstat (limited to 'src/H5Gnode.c')
-rw-r--r-- | src/H5Gnode.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/H5Gnode.c b/src/H5Gnode.c index d830a6b..1c34703 100644 --- a/src/H5Gnode.c +++ b/src/H5Gnode.c @@ -35,8 +35,6 @@ #include "H5Oprivate.h" /*header messages */ #include "H5Pprivate.h" /*property lists */ -#include "H5FDmpio.h" /*the MPIO file driver */ - #define PABLO_MASK H5G_node_mask /* PRIVATE PROTOTYPES */ @@ -367,10 +365,6 @@ H5G_node_flush(H5F_t *f, hbool_t destroy, haddr_t addr, H5G_node_t *sym) H5G_ent_encode_vec(f, &p, sym->entry, sym->nsyms); HDmemset(p, 0, size - (p - buf)); -#ifdef H5_HAVE_PARALLEL - if (IS_H5FD_MPIO(f)) - H5FD_mpio_tas_allsame(f->shared->lf, TRUE); /*only p0 will write*/ -#endif /* H5_HAVE_PARALLEL */ status = H5F_block_write(f, H5FD_MEM_BTREE, addr, size, H5P_DATASET_XFER_DEFAULT, buf); if (status < 0) HRETURN_ERROR(H5E_SYM, H5E_WRITEERROR, FAIL, |