diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-08-29 22:10:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-08-29 22:10:41 (GMT) |
commit | ed506058832725fe3bf3acbbe7c1e2891499995b (patch) | |
tree | c7d77a544b1bd3699f21cf5cbbd3484840baeb98 /src/H5Dchunk.c | |
parent | 097d2de6f8d8790596bbd189a8e01929e353bdd8 (diff) | |
download | hdf5-ed506058832725fe3bf3acbbe7c1e2891499995b.zip hdf5-ed506058832725fe3bf3acbbe7c1e2891499995b.tar.gz hdf5-ed506058832725fe3bf3acbbe7c1e2891499995b.tar.bz2 |
[svn-r27618] Description:
Align w/vds branch: Remove extraneous sieve buffer flush in chunk
flush callback, and move error check out of the middle of retrieving properties
for dataset.
Tested on:
MacOSX/64 10.10.5 (amazon) w/serial & parallel
(h5committest forthcoming)
Diffstat (limited to 'src/H5Dchunk.c')
-rw-r--r-- | src/H5Dchunk.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index f54fa8e..8584d0a 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -2120,10 +2120,6 @@ H5D__chunk_flush(H5D_t *dset, hid_t dxpl_id) /* Sanity check */ HDassert(dset); - /* Flush any data caught in sieve buffer */ - if(H5D__flush_sieve_buf(dset, dxpl_id) < 0) - HGOTO_ERROR(H5E_DATASET, H5E_CANTFLUSH, FAIL, "unable to flush sieve buffer") - /* Fill the DXPL cache values for later use */ if(H5D__get_dxpl_cache(dxpl_id, &dxpl_cache) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTGET, FAIL, "can't fill dxpl cache") |