diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-05-29 10:57:47 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-05-29 10:57:47 (GMT) |
commit | bf566b775bbef681e9135c38dbf414df2162cdcc (patch) | |
tree | 8d353ae50560cdf28fcbb313b92c7462e4cc7f6a /src/H5AC.c | |
parent | 29a5f1061994a9d40a96726df6141f6e127c4b7b (diff) | |
download | hdf5-bf566b775bbef681e9135c38dbf414df2162cdcc.zip hdf5-bf566b775bbef681e9135c38dbf414df2162cdcc.tar.gz hdf5-bf566b775bbef681e9135c38dbf414df2162cdcc.tar.bz2 |
[svn-r29969] Description:
Bring r29934 from revise_chunks branch to trunk:
(1) Fix for HDFFV-9434: throw an error instead of assertion when v1 btree level hits the 1 byte limit.
(2) Modifications to better handle error recovery when conversion by h5format_convert fails.
Tested on:
MacOSX/64 10.11.5 (amazon) w/serial, parallel & production
(h5committest forthcoming)
Diffstat (limited to 'src/H5AC.c')
-rw-r--r-- | src/H5AC.c | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -2464,6 +2464,41 @@ done: } /* H5AC_flush_tagged_metadata */ + +/*------------------------------------------------------------------------------ + * Function: H5AC_expunge_tag_type_metadata() + * + * Purpose: Wrapper for cache level function which expunge entries with + * a specific tag and type id. + * + * Return: SUCCEED on success, FAIL otherwise. + * + * Programmer: Vailin Choi; May 2016 + * + *------------------------------------------------------------------------------ + */ +herr_t +H5AC_expunge_tag_type_metadata(H5F_t *f, hid_t dxpl_id, haddr_t tag, int type_id, unsigned flags) +{ + /* Variable Declarations */ + herr_t ret_value = SUCCEED; + + /* Function Enter Macro */ + FUNC_ENTER_NOAPI(FAIL) + + /* Assertions */ + HDassert(f); + HDassert(f->shared); + + /* Call cache level function to expunge entries with specified tag and type id */ + if(H5C_expunge_tag_type_metadata(f, dxpl_id, tag, type_id, flags)<0) + HGOTO_ERROR(H5E_CACHE, H5E_CANTFLUSH, FAIL, "Cannot expunge tagged type entries") + +done: + FUNC_LEAVE_NOAPI(ret_value) + +} /* H5AC_expunge_tag_type_metadata*/ + #if H5AC_DO_TAGGING_SANITY_CHECKS /*------------------------------------------------------------------------- |