summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2017-01-31 16:17:57 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2017-01-31 16:17:57 (GMT)
commit6cf541b6c254c780c685c696a1c2dd3a0dcbe2cf (patch)
tree59949345247e6bae6ca10f1284ff9e6f754edc98 /src
parentec941a86436140c93f41a1ca8b3d6aae4dcdc487 (diff)
parent0827105ddaffa5024ed25bd0268aa329f4b97e74 (diff)
downloadhdf5-6cf541b6c254c780c685c696a1c2dd3a0dcbe2cf.zip
hdf5-6cf541b6c254c780c685c696a1c2dd3a0dcbe2cf.tar.gz
hdf5-6cf541b6c254c780c685c696a1c2dd3a0dcbe2cf.tar.bz2
Merge pull request #274 in HDFFV/hdf5 from develop_merge_cache_image_08 to develop
* commit '0827105ddaffa5024ed25bd0268aa329f4b97e74': Review changes to closing files on error in H5Fcreate.
Diffstat (limited to 'src')
-rw-r--r--src/H5F.c56
1 files changed, 15 insertions, 41 deletions
diff --git a/src/H5F.c b/src/H5F.c
index d3e365a..5fd3a7d 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -492,13 +492,11 @@ H5Fcreate(const char *filename, unsigned flags, hid_t fcpl_id, hid_t fapl_id)
if(NULL == (new_file = H5F_open(filename, flags, fcpl_id, fapl_id, dxpl_id)))
HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "unable to create file")
- /* check to see if both SWMR and cache image are requested. Fail if so */
- if ( H5C_cache_image_status(new_file, &ci_load, &ci_write) < 0 )
- HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "can't get MDC CI status")
-
- if ( ( ( ci_load ) || ( ci_write ) ) &&
- ( flags & (H5F_ACC_SWMR_READ | H5F_ACC_SWMR_WRITE) ) )
- HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "can't have both SWMR and cache image.")
+ /* Check to see if both SWMR and cache image are requested. Fail if so */
+ if(H5C_cache_image_status(new_file, &ci_load, &ci_write) < 0)
+ HGOTO_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't get MDC cache image status")
+ if((ci_load || ci_write) && (flags & (H5F_ACC_SWMR_READ | H5F_ACC_SWMR_WRITE)))
+ HGOTO_ERROR(H5E_FILE, H5E_UNSUPPORTED, FAIL, "can't have both SWMR and cache image")
/* Get an atom for the file */
if((ret_value = H5I_register(H5I_FILE, new_file, TRUE)) < 0)
@@ -508,29 +506,8 @@ H5Fcreate(const char *filename, unsigned flags, hid_t fcpl_id, hid_t fapl_id)
new_file->file_id = ret_value;
done:
-#if 0
- /* Quincy: please review this. With the original cleanup code (below)
- * my code (above) to disable the combination of SWMR and cache image,
- * triggering results in an assertion failure in H5F_close() either
- * immediately or on library shutdown depending on the exact location
- * of my code.
- *
- * I noticed that the issue did not appear in H5Fopen(). As that function
- * calls H5F_try_close() instead of H5F_close(), I tried copying that
- * cleanup code here. It seems to work -- but since I'm not familiar
- * with this section of the code, it would be good if you would check me.
- *
- * Please delete the old version if you buy the fix.
- *
- * JRM -- 12/29/16
- */
- if(ret_value < 0 && new_file)
- if(H5F_close(new_file) < 0)
- HDONE_ERROR(H5E_FILE, H5E_CANTCLOSEFILE, FAIL, "problems closing file")
-#else
if(ret_value < 0 && new_file && H5F_try_close(new_file, NULL) < 0)
HDONE_ERROR(H5E_FILE, H5E_CANTCLOSEFILE, FAIL, "problems closing file")
-#endif
FUNC_LEAVE_API(ret_value)
} /* end H5Fcreate() */
@@ -610,13 +587,11 @@ H5Fopen(const char *filename, unsigned flags, hid_t fapl_id)
if(NULL == (new_file = H5F_open(filename, flags, H5P_FILE_CREATE_DEFAULT, fapl_id, dxpl_id)))
HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "unable to open file")
- /* check to see if both SWMR and cache image are requested. Fail if so */
- if ( H5C_cache_image_status(new_file, &ci_load, &ci_write) < 0 )
- HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "can't get MDC CI status")
-
- if ( ( ( ci_load ) || ( ci_write ) ) &&
- ( flags & (H5F_ACC_SWMR_READ | H5F_ACC_SWMR_WRITE) ) )
- HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "can't have both SWMR and cache image")
+ /* Check to see if both SWMR and cache image are requested. Fail if so */
+ if(H5C_cache_image_status(new_file, &ci_load, &ci_write) < 0)
+ HGOTO_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't get MDC cache image status")
+ if((ci_load || ci_write) && (flags & (H5F_ACC_SWMR_READ | H5F_ACC_SWMR_WRITE)))
+ HGOTO_ERROR(H5E_FILE, H5E_UNSUPPORTED, FAIL, "can't have both SWMR and cache image")
/* Get an atom for the file */
if((ret_value = H5I_register(H5I_FILE, new_file, TRUE)) < 0)
@@ -1668,12 +1643,11 @@ H5Fstart_swmr_write(hid_t file_id)
HDassert(file->shared->sblock->status_flags & H5F_SUPER_WRITE_ACCESS);
- /* check to see if cache image is enabled. Fail if so */
- if ( H5C_cache_image_status(file, &ci_load, &ci_write) < 0 )
- HGOTO_ERROR(H5E_FILE, H5E_BADVALUE, FAIL, "can't get MDC CI status")
-
- if ( ( ci_load ) || ( ci_write ) )
- HGOTO_ERROR(H5E_FILE, H5E_BADVALUE, FAIL, "can't have both SWMR and MDC cache image.")
+ /* Check to see if cache image is enabled. Fail if so */
+ if(H5C_cache_image_status(file, &ci_load, &ci_write) < 0)
+ HGOTO_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't get MDC cache image status")
+ if(ci_load || ci_write )
+ HGOTO_ERROR(H5E_FILE, H5E_UNSUPPORTED, FAIL, "can't have both SWMR and MDC cache image")
/* Flush data buffers */
if(H5F_flush(file, H5AC_ind_read_dxpl_id, FALSE) < 0)