summaryrefslogtreecommitdiffstats
path: root/src/H5G.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2015-06-26 18:44:27 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2015-06-26 18:44:27 (GMT)
commit130e77f4fa8044b2e2e06cf18b74ed8f8c64665a (patch)
tree0aaac762383218a930bc513108de585225eb6cf9 /src/H5G.c
parent39b99473ea6e83aa394779a591eeef55fe141487 (diff)
downloadhdf5-130e77f4fa8044b2e2e06cf18b74ed8f8c64665a.zip
hdf5-130e77f4fa8044b2e2e06cf18b74ed8f8c64665a.tar.gz
hdf5-130e77f4fa8044b2e2e06cf18b74ed8f8c64665a.tar.bz2
[svn-r27288] Bring revision #24622 from revise_chksum_retry branch to revise_chunks. h5committested.
#test-p fails but will be fixed with merges later: #26569 (revise_chksum_retry) + v3 metadata cache #27237 (trunk).
Diffstat (limited to 'src/H5G.c')
-rw-r--r--src/H5G.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5G.c b/src/H5G.c
index b6cbd83..52d5b49 100644
--- a/src/H5G.c
+++ b/src/H5G.c
@@ -848,9 +848,8 @@ H5Gflush(hid_t group_id)
if(NULL == (grp = (H5G_t *)H5I_object_verify(group_id, H5I_GROUP)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a group")
- /* Call private function to flush group object */
- if (H5O_flush_metadata(&grp->oloc, H5AC_dxpl_id) < 0)
- HGOTO_ERROR(H5E_SYM, H5E_CANTFLUSH, FAIL, "unable to flush group")
+ if(H5O_flush_common(&grp->oloc, group_id) < 0)
+ HGOTO_ERROR(H5E_SYM, H5E_CANTFLUSH, FAIL, "unable to flush group and object flush callback")
done:
FUNC_LEAVE_API(ret_value)