diff options
author | David Young <dyoung@hdfgroup.org> | 2020-07-30 21:53:01 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-07-30 21:53:01 (GMT) |
commit | 2a64d2fe93a0ba1da27c77df8a9e3b76e3cd5ee9 (patch) | |
tree | 7b3475f076365f2006ffaac55161183d4170c777 /src/H5FDlog.c | |
parent | 5632094d5c733af77003ecf4051a14f38645d993 (diff) | |
download | hdf5-2a64d2fe93a0ba1da27c77df8a9e3b76e3cd5ee9.zip hdf5-2a64d2fe93a0ba1da27c77df8a9e3b76e3cd5ee9.tar.gz hdf5-2a64d2fe93a0ba1da27c77df8a9e3b76e3cd5ee9.tar.bz2 |
Change H5F_open to perform deduplication of open VFDs in a more flexible way,
using the new routine H5FDdeduplicate().
Simplify H5F_open() a bit, pushing some of the configuration checks into the
SMWR VFD. For example, check that page buffering is enabled in
H5FD_vfd_swmr_open() instead of in H5F_open(). Compare VFD SWMR configurations
in H5FD_vfd_swmr_dedup() instead of in H5F_open().
Clone the default file-access property list at a new file-access property list
ID, H5P_FILE_ACCESS_ANY_VFD. The new ID is used to indicate that if the file
that's being opened is already open under an existing virtual file, and if that
virtual file would not ordinarily be opened with the default FAPL, then it's ok
to use that virtual file.
Add a new optional method, `dedup`, to H5FD_class_t, and use it to customize a
VFD's deduplication.
Customize the SWMR VFD's deduplication. Make it honor H5P_FILE_ACCESS_ANY_VFD
Embed the VFD SWMR configuration in the H5FD_vfd_swmr_t to facilitate
comparison of configuration between new and old SWMR virtual files.
In H5F__sfile_search(), match using a pointer comparison instead of H5FD_cmp(),
because we will only ever enter H5F__sfile_search() with a deduplicated
H5FD_t *.
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r-- | src/H5FDlog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c index f649bc4..1536337 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -215,6 +215,7 @@ static const H5FD_class_t H5FD_log_g = { H5FD_log_truncate, /*truncate */ H5FD_log_lock, /*lock */ H5FD_log_unlock, /*unlock */ + NULL, /*dedup */ H5FD_FLMAP_DICHOTOMY /*fl_map */ }; |