diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2021-03-23 00:03:40 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2021-03-23 00:03:40 (GMT) |
commit | 5a5a2dbca85355aa027367a986d6615b3e620e38 (patch) | |
tree | 8837a67f7b0626573e653d9436ef5f96c03a06d6 | |
parent | e74ffa9578aa0ab62da95e8fac60e6b5269caaa1 (diff) | |
download | hdf5-5a5a2dbca85355aa027367a986d6615b3e620e38.zip hdf5-5a5a2dbca85355aa027367a986d6615b3e620e38.tar.gz hdf5-5a5a2dbca85355aa027367a986d6615b3e620e38.tar.bz2 |
Adds missing dedup callback entries to other VFDs
NOTE: The mirror VFD and parallel are currently broken
-rw-r--r-- | src/H5FDdirect.c | 1 | ||||
-rw-r--r-- | src/H5FDmirror.c | 1 | ||||
-rw-r--r-- | src/H5FDmpio.c | 1 | ||||
-rw-r--r-- | src/H5FDros3.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c index 34c4346..498d5f8 100644 --- a/src/H5FDdirect.c +++ b/src/H5FDdirect.c @@ -171,6 +171,7 @@ static const H5FD_class_t H5FD_direct_g = { H5FD_direct_truncate, /*truncate */ H5FD_direct_lock, /*lock */ H5FD_direct_unlock, /*unlock */ + NULL, /* dedup */ H5FD_FLMAP_DICHOTOMY /*fl_map */ }; diff --git a/src/H5FDmirror.c b/src/H5FDmirror.c index ef035c1..9f47806 100644 --- a/src/H5FDmirror.c +++ b/src/H5FDmirror.c @@ -197,6 +197,7 @@ static const H5FD_class_t H5FD_mirror_g = { H5FD_mirror_truncate, /* truncate */ H5FD_mirror_lock, /* lock */ H5FD_mirror_unlock, /* unlock */ + NULL, /* dedup */ H5FD_FLMAP_DICHOTOMY /* fl_map */ }; diff --git a/src/H5FDmpio.c b/src/H5FDmpio.c index 3d2e0cf..4fce560 100644 --- a/src/H5FDmpio.c +++ b/src/H5FDmpio.c @@ -127,6 +127,7 @@ static const H5FD_class_mpi_t H5FD_mpio_g = { H5FD__mpio_truncate, /*truncate */ NULL, /*lock */ NULL, /*unlock */ + NULL, /* dedup */ H5FD_FLMAP_DICHOTOMY /*fl_map */ }, /* End of superclass information */ H5FD__mpio_mpi_rank, /*get_rank */ diff --git a/src/H5FDros3.c b/src/H5FDros3.c index d99272c..a936f55 100644 --- a/src/H5FDros3.c +++ b/src/H5FDros3.c @@ -272,6 +272,7 @@ static const H5FD_class_t H5FD_ros3_g = { H5FD_ros3_truncate, /* truncate */ H5FD_ros3_lock, /* lock */ H5FD_ros3_unlock, /* unlock */ + NULL, /* dedup */ H5FD_FLMAP_DICHOTOMY /* fl_map */ }; |