diff options
author | John Mainzer <mainzer@hdfgroup.org> | 2008-10-08 18:10:19 (GMT) |
---|---|---|
committer | John Mainzer <mainzer@hdfgroup.org> | 2008-10-08 18:10:19 (GMT) |
commit | e16277e5bc3610b05c75b65ad7572257f73a3d8e (patch) | |
tree | 1db9a3f139e9b384ea9d86f1b0c3ed26387d4ed0 | |
parent | 7064d9d8ad4d9b79e26b6204299f5aeb664b500e (diff) | |
download | hdf5-e16277e5bc3610b05c75b65ad7572257f73a3d8e.zip hdf5-e16277e5bc3610b05c75b65ad7572257f73a3d8e.tar.gz hdf5-e16277e5bc3610b05c75b65ad7572257f73a3d8e.tar.bz2 |
[svn-r15818] Fixed error in metadata cache configuration validation code uncovered
when updating documentation for "cork the cache" and flash cache size
increment code.
Tested: Serial on Phoenix
Parallel on Kagiso
Serial on Linew
-rw-r--r-- | src/H5AC.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3142,6 +3142,7 @@ H5AC_validate_config(H5AC_cache_config_t * config_ptr) if ( ( config_ptr->evictions_enabled == FALSE ) && ( ( config_ptr->incr_mode != H5C_incr__off ) || + ( config_ptr->flash_incr_mode != H5C_flash_incr__off ) || ( config_ptr->incr_mode != H5C_decr__off ) ) ) { HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, \ |