summaryrefslogtreecommitdiffstats
path: root/test/vfd_swmr_indep_rw_writer.c
diff options
context:
space:
mode:
authormyang6 <myang6@hdfgroup.org>2021-12-08 20:16:08 (GMT)
committermyang6 <myang6@hdfgroup.org>2021-12-08 20:16:08 (GMT)
commit57b9935b75bda1d7485e4599d45c8e559da497c6 (patch)
treec60ca78d852a46d33fb93f01a88d848386fda1a9 /test/vfd_swmr_indep_rw_writer.c
parent63f084bc8d56c607f570a56cb9e2c188acb4bb62 (diff)
downloadhdf5-57b9935b75bda1d7485e4599d45c8e559da497c6.zip
hdf5-57b9935b75bda1d7485e4599d45c8e559da497c6.tar.gz
hdf5-57b9935b75bda1d7485e4599d45c8e559da497c6.tar.bz2
update the init_vfd_swmr_config to catch up the latest NFS pull request
Diffstat (limited to 'test/vfd_swmr_indep_rw_writer.c')
-rw-r--r--test/vfd_swmr_indep_rw_writer.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/vfd_swmr_indep_rw_writer.c b/test/vfd_swmr_indep_rw_writer.c
index 678ccb2..c4c8dd7 100644
--- a/test/vfd_swmr_indep_rw_writer.c
+++ b/test/vfd_swmr_indep_rw_writer.c
@@ -363,8 +363,9 @@ indep_init_vfd_swmr_config_plist(state_t *s, bool writer, const char *mdf_path)
H5F_vfd_swmr_config_t config;
- /* config, tick_len, max_lag, writer, flush_raw_data, md_pages_reserved, md_file_path */
- init_vfd_swmr_config(&config, s->tick_len, s->max_lag, writer, TRUE, 128, mdf_path);
+ /* config, tick_len, max_lag, writer, maintain_metadata_file, generate_updater_files,
+ * flush_raw_data, md_pages_reserved, md_file_path, updater_file_path */
+ init_vfd_swmr_config(&config, s->tick_len, s->max_lag, writer, TRUE, FALSE, TRUE, 128, mdf_path,NULL);
/* Pass the use_vfd_swmr, only_meta_page, page buffer size, config to vfd_swmr_create_fapl().*/
if ((s->fapl = vfd_swmr_create_fapl(true, s->use_vfd_swmr, true, s->pbs, &config)) < 0) {