mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Merge branch 'develop' into H5Pset_fapl_mpi
This commit is contained in:
commit
68cd4eea0e
@ -326,6 +326,20 @@ Bug Fixes since HDF5-1.10.3 release
|
||||
|
||||
Library
|
||||
-------
|
||||
- Fixed a bug caused by bad tag value when condensing object header
|
||||
messages
|
||||
|
||||
There was an assertion failure when moving meessages from running a
|
||||
user test program with library release hdf5.1.10.4. It was because
|
||||
the tag value (object header's address) was not set up when entering
|
||||
the library routine H5O__chunk_update_idx(), which will eventually
|
||||
verifies the metadata tag value when protecting the object header.
|
||||
|
||||
The problem was fixed by replacing FUNC_ENTER_PACKAGE in H5O__chunk_update_idx()
|
||||
with FUNC_ENTER_PACKAGE_TAG(oh->cache_info.addr) to set up the metadata tag.
|
||||
|
||||
(VC - 2019/08/23, HDFFV-10873)
|
||||
|
||||
- Fixed the test failure from test_metadata_read_retry_info() in
|
||||
test/swmr.c
|
||||
|
||||
|
@ -390,7 +390,7 @@ HDfprintf(stderr, "%s: fspace->alloc_sect_size = %Hu, fspace->sect_size = %Hu\n"
|
||||
cache_flags |= H5AC__DIRTIED_FLAG;
|
||||
|
||||
/* On file close or flushing, does not allow section info to shrink in size */
|
||||
if(f->closing || flush_in_progress) {
|
||||
if(f->shared->closing || flush_in_progress) {
|
||||
if(fspace->sect_size > fspace->alloc_sect_size)
|
||||
cache_flags |= H5AC__DELETED_FLAG | H5AC__TAKE_OWNERSHIP_FLAG;
|
||||
else
|
||||
@ -441,7 +441,7 @@ HDfprintf(stderr, "%s: Relinquishing section info ownership\n", FUNC);
|
||||
/* Set flag to release section info space in file */
|
||||
/* On file close or flushing, only need to release section info with size
|
||||
bigger than previous section */
|
||||
if(f->closing || flush_in_progress) {
|
||||
if(f->shared->closing || flush_in_progress) {
|
||||
if(fspace->sect_size > fspace->alloc_sect_size)
|
||||
release_sinfo_space = TRUE;
|
||||
else
|
||||
|
@ -1175,6 +1175,9 @@ H5F__dest(H5F_t *f, hbool_t flush)
|
||||
if(1 == f->shared->nrefs) {
|
||||
int actype; /* metadata cache type (enum value) */
|
||||
|
||||
/* Mark this file as closing */
|
||||
f->shared->closing = TRUE;
|
||||
|
||||
/* Flush at this point since the file will be closed (phase 1).
|
||||
* Only try to flush the file if it was opened with write access, and if
|
||||
* the caller requested a flush.
|
||||
|
@ -309,6 +309,7 @@ struct H5F_shared_t {
|
||||
struct H5G_t *root_grp; /* Open root group */
|
||||
H5FO_t *open_objs; /* Open objects in file */
|
||||
H5UC_t *grp_btree_shared; /* Ref-counted group B-tree node info */
|
||||
hbool_t closing; /* File is in the process of being closed */
|
||||
|
||||
/* Cached VOL connector ID & info */
|
||||
hid_t vol_id; /* ID of VOL connector for the container */
|
||||
|
@ -194,9 +194,9 @@ HDfprintf(stderr, "%s: type = %u, size = %Hu\n", FUNC, (unsigned)type, size);
|
||||
* the cache eventually adjusts/evicts ageout entries and ends up flushing out the
|
||||
* same entry that is being serialized (flush_in_progress).
|
||||
*/
|
||||
if((f->shared->feature_flags & aggr->feature_flag) && f->shared->fs_strategy != H5F_FSPACE_STRATEGY_NONE && (!f->closing || !f->shared->fs_persist)) {
|
||||
if((f->shared->feature_flags & aggr->feature_flag) && f->shared->fs_strategy != H5F_FSPACE_STRATEGY_NONE && (!f->shared->closing || !f->shared->fs_persist)) {
|
||||
#ifdef REPLACE
|
||||
if((f->shared->feature_flags & aggr->feature_flag) && f->shared->fs_strategy != H5F_FSPACE_STRATEGY_NONE && !f->closing) {
|
||||
if((f->shared->feature_flags & aggr->feature_flag) && f->shared->fs_strategy != H5F_FSPACE_STRATEGY_NONE && !f->shared->closing) {
|
||||
#endif
|
||||
haddr_t aggr_frag_addr = HADDR_UNDEF; /* Address of aggregrator fragment */
|
||||
hsize_t aggr_frag_size = 0; /* Size of aggregator fragment */
|
||||
|
@ -325,7 +325,7 @@ H5O__mdci_delete(H5F_t *f, H5O_t H5_ATTR_UNUSED *open_oh, void *_mesg)
|
||||
|
||||
|
||||
|
||||
if(f->closing) {
|
||||
if(f->shared->closing) {
|
||||
|
||||
/* Get the eoa, and verify that it has the expected value */
|
||||
if(HADDR_UNDEF == (final_eoa = H5FD_get_eoa(f->shared->lf, H5FD_MEM_DEFAULT)) )
|
||||
|
@ -331,7 +331,7 @@ H5O__chunk_update_idx(H5F_t *f, H5O_t *oh, unsigned idx)
|
||||
H5O_chk_cache_ud_t chk_udata; /* User data for loading chunk */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_PACKAGE
|
||||
FUNC_ENTER_PACKAGE_TAG(oh->cache_info.addr)
|
||||
|
||||
/* check args */
|
||||
HDassert(f);
|
||||
|
Loading…
x
Reference in New Issue
Block a user