summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-11-04 16:56:55 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-11-04 16:56:55 (GMT)
commit9187e8c5d0663c176c50cc5b6053a8732a834194 (patch)
tree3f2c28cf0a416606a22c786082760b87296be9e0 /src/H5Fint.c
parentab66f6aa8c44e9298b42db7657be269e684bd274 (diff)
downloadhdf5-9187e8c5d0663c176c50cc5b6053a8732a834194.zip
hdf5-9187e8c5d0663c176c50cc5b6053a8732a834194.tar.gz
hdf5-9187e8c5d0663c176c50cc5b6053a8732a834194.tar.bz2
Add missing retrieval of cache logging name, from revise_chunks.
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index fb05efc..dab1900 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -686,6 +686,22 @@ H5F_new(H5F_file_t *shared, unsigned flags, hid_t fcpl_id, hid_t fapl_id, H5FD_t
*/
f->shared->use_tmp_space = !H5F_HAS_FEATURE(f, H5FD_FEAT_HAS_MPI);
+ /* Get the metadata cache log location (if we're logging) */
+ {
+ char *mdc_log_location = NULL; /* location of metadata cache log location */
+
+ if(H5P_get(plist, H5F_ACS_MDC_LOG_LOCATION_NAME, &mdc_log_location) < 0)
+ HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, NULL, "can't get mdc log location")
+ if(mdc_log_location != NULL) {
+ size_t len = HDstrlen(mdc_log_location);
+ if(NULL == (f->shared->mdc_log_location = (char *)H5MM_calloc((len + 1) * sizeof(char))))
+ HGOTO_ERROR(H5E_RESOURCE, H5E_CANTALLOC, NULL, "can't allocate memory for mdc log file name")
+ HDstrncpy(f->shared->mdc_log_location, mdc_log_location, len);
+ }
+ else
+ f->shared->mdc_log_location = NULL;
+ } /* end block */
+
/* Get object flush callback information */
if(H5P_get(plist, H5F_ACS_OBJECT_FLUSH_CB_NAME, &(f->shared->object_flush)) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTGET, NULL, "can't get object flush cb info")