summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-03-15 17:51:02 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-03-15 17:51:02 (GMT)
commit3590175e4a222da09064206a7492ef6ccc7432c4 (patch)
tree6821e3f2897b6189f71f2fb274491e62269f4a6f /src/H5Dint.c
parent56d8e3185551ce3f7249d49d0cd79b4174606303 (diff)
downloadhdf5-3590175e4a222da09064206a7492ef6ccc7432c4.zip
hdf5-3590175e4a222da09064206a7492ef6ccc7432c4.tar.gz
hdf5-3590175e4a222da09064206a7492ef6ccc7432c4.tar.bz2
[svn-r29422] Merge of r29421 from trunk. Fixes HDFFV-9516.
Tested on: jam
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index fd3a0ec..06ea1e4 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -3571,6 +3571,18 @@ H5D_get_access_plist(H5D_t *dset)
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set append flush property")
} /* end if */
+ /* Set the VDS view option */
+ if(H5P_set(new_plist, H5D_ACS_VDS_VIEW_NAME, &(dset->shared->layout.storage.u.virt.view)) < 0)
+ HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set VDS view")
+
+ /* Set the VDS printf gap option */
+ if(H5P_set(new_plist, H5D_ACS_VDS_PRINTF_GAP_NAME, &(dset->shared->layout.storage.u.virt.printf_gap)) < 0)
+ HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set VDS printf gap")
+
+ /* Set the external file prefix option */
+ if(H5P_set(new_plist, H5D_ACS_EFILE_PREFIX_NAME, &(dset->shared->extfile_prefix)) < 0)
+ HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set external file prefix")
+
/* Set the return value */
ret_value = new_dapl_id;