summaryrefslogtreecommitdiffstats
path: root/src/H5FScache.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-11-30 04:53:52 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-11-30 04:53:52 (GMT)
commita046ac31d263465130c8824c80af6db06587552e (patch)
treed539770b4bb812c820344554674b8fff5957a6ae /src/H5FScache.c
parent63bcd73f1f53a8b4bb31083cbc30f9a90663438f (diff)
downloadhdf5-a046ac31d263465130c8824c80af6db06587552e.zip
hdf5-a046ac31d263465130c8824c80af6db06587552e.tar.gz
hdf5-a046ac31d263465130c8824c80af6db06587552e.tar.bz2
First cut at fixing the tagging issue with the free space managers.
* Converted the tag macros to regular ones so the parent's tag is used via the dxpl. * Updated the tag sanity check logic so for free space managers. * Turned new-style group checks back on in test/evict_on_close.c
Diffstat (limited to 'src/H5FScache.c')
-rw-r--r--src/H5FScache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FScache.c b/src/H5FScache.c
index c1a9e0a..9917a44 100644
--- a/src/H5FScache.c
+++ b/src/H5FScache.c
@@ -412,7 +412,7 @@ H5FS__cache_hdr_pre_serialize(const H5F_t *f, hid_t dxpl_id, void *_thing,
H5AC_ring_t orig_ring = H5AC_RING_INV; /* Original ring value */
herr_t ret_value = SUCCEED; /* Return value */
- FUNC_ENTER_STATIC_TAG(dxpl_id, H5AC__FREESPACE_TAG, FAIL)
+ FUNC_ENTER_STATIC
/* Sanity check */
HDassert(f);
@@ -644,7 +644,7 @@ done:
if(H5AC_reset_ring(dxpl, orig_ring) < 0)
HDONE_ERROR(H5E_FSPACE, H5E_CANTSET, FAIL, "unable to set property value")
- FUNC_LEAVE_NOAPI_TAG(ret_value, FAIL)
+ FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FS__cache_hdr_pre_serialize() */