mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
Merge branch 'develop' into hdf5_1_10.sync
This commit is contained in:
commit
e8eb130ce6
@ -62,9 +62,6 @@ For more information see USING_CMake_Examples.txt in the install folder.
|
||||
===========================================================================
|
||||
|
||||
Documentation for this release can be found at the following URL:
|
||||
http://www.hdfgroup.org/HDF5/doc/.
|
||||
|
||||
See the HDF5 home page for further details:
|
||||
http://hdfgroup.org/HDF5/
|
||||
https://portal.hdfgroup.org/display/support
|
||||
|
||||
Bugs should be reported to help@hdfgroup.org.
|
||||
|
@ -15,9 +15,9 @@ NOTE: Building applications with the dynamic/shared hdf5 libraries requires
|
||||
The following two sections are helpful if you do not use CMake to build
|
||||
your applications.
|
||||
|
||||
========================================================================
|
||||
Using Visual Studio 2010 with HDF5 Libraries built with Visual Studio 2010
|
||||
========================================================================
|
||||
==============================================================================================
|
||||
Using Visual Studio 2010 and above with HDF5 Libraries built with Visual Studio 2010 and above
|
||||
==============================================================================================
|
||||
|
||||
1. Set up path for external libraries and headers
|
||||
|
||||
@ -79,13 +79,9 @@ Using Visual Studio 2008 with HDF5 Libraries built with Visual Studio 2008
|
||||
3.1 FAQ
|
||||
|
||||
Many other common questions and hints are located online and being updated
|
||||
in the HDF5 FAQ. For Windows-specific questions, please see:
|
||||
in the HDF Knowledge Base, please see:
|
||||
|
||||
https://support.hdfgroup.org/HDF5/faq/windows.html
|
||||
|
||||
For all other general questions, you can look in the general FAQ:
|
||||
|
||||
https://support.hdfgroup.org/HDF5/HDF5-FAQ.html
|
||||
https://portal.hdfgroup.org/display/knowledge/HDF+Knowledge+Base
|
||||
|
||||
************************************************************************
|
||||
Please send email to help@hdfgroup.org for further assistance.
|
||||
|
70
src/H5Fint.c
70
src/H5Fint.c
@ -510,7 +510,7 @@ H5F__build_name(const char *prefix, const char *file_name, char **full_name/*out
|
||||
|
||||
/* Compose the full file name */
|
||||
HDsnprintf(*full_name, (prefix_len + fname_len + 2), "%s%s%s", prefix,
|
||||
(H5_CHECK_DELIMITER(prefix[prefix_len - 1]) ? "" : H5_DIR_SEPS), file_name);
|
||||
((prefix_len == 0 || H5_CHECK_DELIMITER(prefix[prefix_len - 1])) ? "" : H5_DIR_SEPS), file_name);
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
@ -1343,8 +1343,8 @@ H5F__dest(H5F_t *f, hbool_t flush)
|
||||
* Return: Success: Non-NULL, pointer to new file object.
|
||||
* Failure: NULL
|
||||
*
|
||||
* Programmer: Quincey Koziol
|
||||
* December 13, 2017
|
||||
* Programmer: Quincey Koziol
|
||||
* December 13, 2017
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -1379,8 +1379,8 @@ done:
|
||||
* Return: Success: Non-NULL, pointer to new file object.
|
||||
* Failure: NULL
|
||||
*
|
||||
* Programmer: Quincey Koziol
|
||||
* December 13, 2017
|
||||
* Programmer: Quincey Koziol
|
||||
* December 13, 2017
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -1881,8 +1881,8 @@ H5F__flush_phase2(H5F_t *f, hbool_t closing)
|
||||
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
if(H5F_HAS_FEATURE(f, H5FD_FEAT_HAS_MPI))
|
||||
/* Since we just returned from a call to H5AC_flush(), we just
|
||||
* passed through a barrier. Hence we can skip the barrier on
|
||||
/* Since we just returned from a call to H5AC_flush(), we just
|
||||
* passed through a barrier. Hence we can skip the barrier on
|
||||
* entry to the mpio file driver truncate call below, and the first
|
||||
* barrier in the following call to flush the cache again.
|
||||
*/
|
||||
@ -1967,8 +1967,8 @@ H5F__flush_real(H5F_t *f)
|
||||
*
|
||||
* Return: Non-negative on success / Negative on failure
|
||||
*
|
||||
* Programmer: Quincey Koziol
|
||||
* December 13, 2017
|
||||
* Programmer: Quincey Koziol
|
||||
* December 13, 2017
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -2792,19 +2792,19 @@ H5F__set_libver_bounds(H5F_t *f, H5F_libver_t low, H5F_libver_t high)
|
||||
* metadata entry class changes when the file format low / high
|
||||
* bounds are changed and an unwritten entry of that class is
|
||||
* sitting in the metadata cache.
|
||||
*
|
||||
*
|
||||
* If that happens, it's possible that the entry's size could
|
||||
* become larger, potentially corrupting the file (if the larger
|
||||
* entry is fully written, overwriting data outside its allocated
|
||||
* space), or corrupting the entry (if the entry is truncated to
|
||||
* fit into the allocated space).
|
||||
*
|
||||
*
|
||||
* Although I'm not aware of any metadata with this behavior
|
||||
* currently, it would be very difficult to guard against and / or
|
||||
* detect, but if we flush everything here, the format version
|
||||
* for metadata entries in the cache will be finalized and these
|
||||
* sorts of problems can be avoided.
|
||||
*
|
||||
*
|
||||
* QAK - April, 2018
|
||||
*/
|
||||
if(H5F__flush_real(f) < 0)
|
||||
@ -3635,7 +3635,7 @@ done:
|
||||
herr_t
|
||||
H5F__format_convert(H5F_t *f)
|
||||
{
|
||||
hbool_t mark_dirty = FALSE; /* Whether to mark the file's superblock dirty */
|
||||
hbool_t mark_dirty = FALSE; /* Whether to mark the file's superblock dirty */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_PACKAGE_VOL
|
||||
@ -3646,39 +3646,39 @@ H5F__format_convert(H5F_t *f)
|
||||
|
||||
/* Check if the superblock should be downgraded */
|
||||
if(f->shared->sblock->super_vers > HDF5_SUPERBLOCK_VERSION_V18_LATEST) {
|
||||
f->shared->sblock->super_vers = HDF5_SUPERBLOCK_VERSION_V18_LATEST;
|
||||
mark_dirty = TRUE;
|
||||
f->shared->sblock->super_vers = HDF5_SUPERBLOCK_VERSION_V18_LATEST;
|
||||
mark_dirty = TRUE;
|
||||
} /* end if */
|
||||
|
||||
/* Check for persistent freespace manager, which needs to be downgraded */
|
||||
if(!(f->shared->fs_strategy == H5F_FILE_SPACE_STRATEGY_DEF &&
|
||||
f->shared->fs_persist == H5F_FREE_SPACE_PERSIST_DEF &&
|
||||
f->shared->fs_threshold == H5F_FREE_SPACE_THRESHOLD_DEF &&
|
||||
f->shared->fs_page_size == H5F_FILE_SPACE_PAGE_SIZE_DEF)) {
|
||||
/* Check to remove free-space manager info message from superblock extension */
|
||||
if(H5F_addr_defined(f->shared->sblock->ext_addr))
|
||||
if(H5F__super_ext_remove_msg(f, H5O_FSINFO_ID) < 0)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTRELEASE, FAIL, "error in removing message from superblock extension")
|
||||
f->shared->fs_persist == H5F_FREE_SPACE_PERSIST_DEF &&
|
||||
f->shared->fs_threshold == H5F_FREE_SPACE_THRESHOLD_DEF &&
|
||||
f->shared->fs_page_size == H5F_FILE_SPACE_PAGE_SIZE_DEF)) {
|
||||
/* Check to remove free-space manager info message from superblock extension */
|
||||
if(H5F_addr_defined(f->shared->sblock->ext_addr))
|
||||
if(H5F__super_ext_remove_msg(f, H5O_FSINFO_ID) < 0)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTRELEASE, FAIL, "error in removing message from superblock extension")
|
||||
|
||||
/* Close freespace manager */
|
||||
if(H5MF_try_close(f) < 0)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTRELEASE, FAIL, "unable to free free-space address")
|
||||
/* Close freespace manager */
|
||||
if(H5MF_try_close(f) < 0)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTRELEASE, FAIL, "unable to free free-space address")
|
||||
|
||||
/* Set non-persistent freespace manager */
|
||||
f->shared->fs_strategy = H5F_FILE_SPACE_STRATEGY_DEF;
|
||||
f->shared->fs_persist = H5F_FREE_SPACE_PERSIST_DEF;
|
||||
f->shared->fs_threshold = H5F_FREE_SPACE_THRESHOLD_DEF;
|
||||
f->shared->fs_page_size = H5F_FILE_SPACE_PAGE_SIZE_DEF;
|
||||
/* Set non-persistent freespace manager */
|
||||
f->shared->fs_strategy = H5F_FILE_SPACE_STRATEGY_DEF;
|
||||
f->shared->fs_persist = H5F_FREE_SPACE_PERSIST_DEF;
|
||||
f->shared->fs_threshold = H5F_FREE_SPACE_THRESHOLD_DEF;
|
||||
f->shared->fs_page_size = H5F_FILE_SPACE_PAGE_SIZE_DEF;
|
||||
|
||||
/* Indicate that the superblock should be marked dirty */
|
||||
mark_dirty = TRUE;
|
||||
/* Indicate that the superblock should be marked dirty */
|
||||
mark_dirty = TRUE;
|
||||
} /* end if */
|
||||
|
||||
/* Check if we should mark the superblock dirty */
|
||||
if(mark_dirty)
|
||||
/* Mark superblock as dirty */
|
||||
if(H5F_super_dirty(f) < 0)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTMARKDIRTY, FAIL, "unable to mark superblock as dirty")
|
||||
/* Mark superblock as dirty */
|
||||
if(H5F_super_dirty(f) < 0)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTMARKDIRTY, FAIL, "unable to mark superblock as dirty")
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI_VOL(ret_value)
|
||||
|
Loading…
Reference in New Issue
Block a user