summaryrefslogtreecommitdiffstats
path: root/src/H5MFsection.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2018-12-19 22:30:44 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2018-12-19 22:30:44 (GMT)
commit0e0abc50c8282af7c39855e58ed32e25091079c1 (patch)
treee70668fe87302a355b4590c601da6e9531283735 /src/H5MFsection.c
parent2b613c6c2135ae8e295515a2eac74ca45b6db433 (diff)
downloadhdf5-0e0abc50c8282af7c39855e58ed32e25091079c1.zip
hdf5-0e0abc50c8282af7c39855e58ed32e25091079c1.tar.gz
hdf5-0e0abc50c8282af7c39855e58ed32e25091079c1.tar.bz2
Fixes for issues #1 and #2 listed in John's email dated Dec 7 2018:
(1) Assertion failure in the vfd_swmr test (2) Reader error in the vfd swmr concurrent tests Also fixes for: (a) Use H5MV_alloc() to allocate space for md_pages_reserved when creating the metadata file in H5F__vfd_swmr_init() (b) Remove a multi-page (when vfd_swmr_writer is true) from the page buffer in H5MF_xfree()
Diffstat (limited to 'src/H5MFsection.c')
-rw-r--r--src/H5MFsection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5MFsection.c b/src/H5MFsection.c
index 3b0a1c2..f35ff21 100644
--- a/src/H5MFsection.c
+++ b/src/H5MFsection.c
@@ -777,7 +777,7 @@ H5MF__sect_small_merge(H5FS_section_info_t **_sect1, H5FS_section_info_t *_sect2
* Note: Large raw/metadata page bypasses the page buffer */
if(udata->f->shared->pb_ptr != NULL)
if(H5PB_remove_entry(udata->f, (*sect1)->sect_info.addr) < 0)
- HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "can't free merged section")
+ HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "can't free merged section from page buffer")
if(H5MF__sect_free((H5FS_section_info_t *)(*sect1)) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTRELEASE, FAIL, "can't free section node")