summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to ↵Larry Knox2017-04-25440-2653/+1768
| | | | | | | | | | hdf5_1_10 * commit '54957d37f5aa73912763dbb6e308555e863c43f4': Commit copyright header change for src/H5PLpkg.c which was added after running script to make changes. Add new files in release_docs to MANIFEST. Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh. Merge pull request #407 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10_1 to hdf5_1_10_1 Change copyright headers to replace url referring to file to be removed and replace it with new url for COPYING file.
* Commit copyright header change for src/H5PLpkg.c which was added after ↵lrknox2017-04-251-6/+4
| | | | running script to make changes.
* Revert HDFFV-9655 by disabling test and not using new function.Allen Byrne2017-04-242-13/+15
|
* Merge pull request #447 in HDFFV/hdf5 from ↵Allen Byrne2017-04-211-7/+87
|\ | | | | | | | | | | | | | | | | ~BYRN/hdf5_adb:bugfix/HDFFV-9655-plugin-path-relative to develop * commit 'a995a63085d88e1a633770536efeff5b01569445': HDFFV-9655 fix test and some warnings HDFFV-9655 fix compile and test HDFFV-9655 - Add functions for '@' - untested
| * HDFFV-9655 fix test and some warningsAllen Byrne2017-04-211-3/+3
| |
| * Merge remote-tracking branch 'origin/develop' intoAllen Byrne2017-04-2121-341/+716
| |\ | | | | | | | | | bugfix/HDFFV-9655-plugin-path-relative
| | * Fix parameter formAllen Byrne2017-04-211-4/+4
| | |
| * | HDFFV-9655 fix compile and testAllen Byrne2017-04-211-35/+47
| | |
| * | HDFFV-9655 - Add functions for '@' - untestedAllen Byrne2017-03-291-0/+68
| | |
* | | Fixed problems that prevent bin/trace from marking up some functions.Dana Robinson2017-04-213-22/+20
| |/ |/|
* | The cache_image test shows a skipped message about EoC in parallel.Dana Robinson2017-04-201-1/+0
| |
* | Added code to disable the evict-on-close feature inDana Robinson2017-04-191-2/+19
| | | | | | | | the parallel library.
* | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2017-04-171-0/+2
|\ \ | | | | | | | | | | | | * commit '5f7822fac4673cdb9e8ed60d104566c9df43303f': Express test mods to test/cache.c
| * | Express test mods to test/cache.cmainzer2017-04-151-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modified test/cache.c to skip the smoke checks with paged aggregation for all express test levels other than 0 Change to src/H5PL.c seems to be the result of autogen.sh. As it seems to be correct, I am checking it in. Tested serial and parallel (debug only) on jelly.
* | | HDFFV-10173 fix compile on VS2008Allen Byrne2017-04-171-118/+118
|/ /
* | Fix for H5Dset_extent test failure with extensive array indexing (HDFFV-9771)Vailin Choi2017-04-112-3/+13
| | | | | | | | | | 1) Calculate chunk index for extensive array index based on swizzled max chunks when unlim_dim > 0 2) Minor fixes to test/fheap.c that somehow were missed from last check in. See pull request #396 review comments.
* | Removed commeted out code from H5C_dump_coll_write_list()mainzer2017-04-071-5/+0
| |
* | Checkin of fix for CGNS bugmainzer2017-04-068-26/+298
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (https://jira.hdfgroup.org/browse/HDFFV-10055). Briefly, in H5C_collective_write() in H5Cmpio.c, the metadata cache attempts to perform a collective write of metadata cache entries. This worked fine as long as all processes had at least one entry to write. However, when the process has no entries, the function tries to participate in the collective write by calling MPI_File_set_view(), MPI_File_write_all() and then MPI_File_set_view() again, to match the calls in H5FD_mpio_write(). After pull request 183, the CGNS test benchmark_hdf5 started failing. On investigation, I determined that the failure occurred in the first call to MPI_File_set_view() in the "no data to write" path through H5C_collective_write(). Note that pull request 183 did not create the problem, it only exposed it. The bug can be observed after pull request 182 if one executes the CGNS progam src/ptests/benchmark_hdf5 with 90 processes. The problem appears to have been that the calls to MPI_File_set_view() in H5C_collective_write() and H5FD_mpio_write() were using different values for the info parameter. I patched the problem by adding a MPI specific VFD call allowing me to get the MPI_Info used in H5FD_mpio_write() for use in MPI_File_set_view() calls in H5C_collective_write(). Tested serial & parallel, debug & production on Jelly.
* | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2017-04-051-2/+4
|\ \ | | | | | | | | | | | | | | | * commit 'b56fb149c9a3c9dca11b406b7a2488f0c93ee187': Updated the H5L.c error message after additional thought. Fix for HDFFV-10141. Updated an error message in H5L.c to be more helpful. Fixes HDFFV-10141.
| * | Updated the H5L.c error message after additional thought.Dana Robinson2017-04-051-1/+1
| | | | | | | | | | | | Fix for HDFFV-10141.
| * | Updated an error message in H5L.c to be more helpful.Dana Robinson2017-04-051-2/+4
| | | | | | | | | | | | Fixes HDFFV-10141.
* | | Update with checks for index boundsAllen Byrne2017-04-031-1/+10
| | |
* | | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2017-04-035-34/+121
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | * commit '2412158ed8326a3f3d62fbd947e470667d0b5951': Add new file COPYING_LBNL_HDF5. Revert "Clear hdf5 1.10 entries from RELEASE.txt in the develop branch. Entries" Add LBNL license file and modify COPYING file accordingly. Omnibus checkin for several relatively minor modifications: Clear hdf5 1.10 entries from RELEASE.txt in the develop branch. Entries in this branch version of RELEASE.txt should be intended for the future 1.12.0 release. Fix HDFFV-8089 Description: Some code within an "ifdef H5D_CHUNK_DEBUG" block was using outdated data structure but not caught because the case of H5D_CHUNK_DEBUG being defined was never tested. It was commented out. I defined H5D_CHUNK_DEBUG, tested, and commented out again. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
| * | Merge pull request #374 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr_cpp3:develop ↵Binh-Minh Ribler2017-04-031-5/+5
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to develop Fix HDFFV-8089 * commit '52f8c2ed494ea1b89374981ecc6901abe8fd5fed': Fix HDFFV-8089 Description: Some code within an "ifdef H5D_CHUNK_DEBUG" block was using outdated data structure but not caught because the case of H5D_CHUNK_DEBUG being defined was never tested. It was commented out. I defined H5D_CHUNK_DEBUG, tested, and commented out again. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
| | * \ Merge branch 'develop' of ↵Binh-Minh Ribler2017-03-281-0/+2
| | |\ \ | | | | | | | | | | | | | | | https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_bmr_cpp3 into develop
| | * | | Fix HDFFV-8089Binh-Minh Ribler2017-03-281-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: Some code within an "ifdef H5D_CHUNK_DEBUG" block was using outdated data structure but not caught because the case of H5D_CHUNK_DEBUG being defined was never tested. It was commented out. I defined H5D_CHUNK_DEBUG, tested, and commented out again. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
| * | | | Omnibus checkin for several relatively minor modifications:mainzer2017-03-284-29/+116
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Added code test/page_buffer.c to verify that page buffering is disabled in parallel builds. 2) Added code to test/cache_image.c to verify correct interaction between evict on close and cache image -- in particular management of a file containing a cache image containing dirty metadata that has been opened R/O. Also fix for the bug exposed. 3) Added code to testpar/t_cache_image.c to verify expected procedure for reading cache images, and also supporting stats collection code needed for the test. 4) Repair of an overactive sanity check in H5C__reconstruct_cache_contents(). 5) Other minor tidies in passing. Tested serial and parallel, debug and production on Jelly.
* | | | HDFFV-10143 fix use before setAllen Byrne2017-03-301-1/+1
| | | |
* | | | Fix code error and use H5PL_MAX_PATH_NUM in testAllen Byrne2017-03-301-2/+1
| | | |
* | | | HDFFV-10143 Cleanup due to commentsAllen Byrne2017-03-302-6/+4
| | | |
* | | | HDFFV-10143 change h5PLget to use buffer like H5Iget_nameAllen Byrne2017-03-302-32/+33
| | | |
* | | | HDFFV-10143 change put to replace and add constAllen Byrne2017-03-302-10/+10
| | | |
* | | | Remove redundant codeAllen Byrne2017-03-301-13/+9
| | | |
* | | | HDFFV-10143 Use Windows A version of ExpandEnvironmentStringsAllen Byrne2017-03-301-1/+1
| | | |
* | | | HDFFV-10143 Fix initial issues from reviewAllen Byrne2017-03-303-100/+88
| |_|/ |/| |
* | | HDFFV-10143 add APIs to manipulate plugin path tableAllen Byrne2017-03-282-0/+305
|/ /
* | Add H5_DLL to H5AC_get_mdc_image_info() prototypeQuincey Koziol2017-03-241-1/+1
| |
* | Add prototype for H5AC_get_mdc_image_infoQuincey Koziol2017-03-221-0/+2
|/
* Minor style cleanupsQuincey Koziol2017-03-223-7/+8
|
* Revert "Switch h5clear for cache images to use existing ↵Quincey Koziol2017-03-225-0/+97
| | | | | | H5Pget_cache_image_config()" This reverts commit dd5105fc9912c77f6d6074700d83e5e8282e86c9.
* Extend h5vers to update version strings in java files and h5repacklrknox2017-03-201-3/+3
| | | | | | | | version test expected output file. Update version on develop branch to 1.11.0. Please enter the commit message for your changes. Lines starting
* Merge pull request #341 in HDFFV/hdf5 from ~MAINZER/hdf5_jrm:develop to developJohn Mainzer2017-03-206-20/+50
|\ | | | | | | | | | | * commit 'b7c58f7dfca66d4caa26d7f8b318ad3514b8c46f': Minor code changes to address comments in pull request Checkin of additions to cache image parallel test code and associated bug fixes.
| * Minor code changes to address comments in pull requestmainzer2017-03-173-3/+6
| |
| * Checkin of additions to cache image parallel test code andmainzer2017-03-166-20/+47
| | | | | | | | | | | | | | | | | | | | | | | | associated bug fixes. Also, modifications to H5PB_dest() to flush the page buffer before destroying the page buffer. This is necessary, as when persistant free space managers are enabled, the page buffer will typically contain dirty FSM data at page buffer destroy time. Tested serial/debug, serial/production, serial/check-vfd/debug, parallel/debug, parallel/production on Jelly.
* | Update cmake pubconf to match autotools and add strtoll checksAllen Byrne2017-03-163-18/+39
|/
* Final merge of page buffering branch to developQuincey Koziol2017-03-1452-1717/+7486
|
* Bring changes to I/O parameters from page_buffering branch.Quincey Koziol2017-03-1313-221/+324
|
* Merge in reentrency changes to "make space in cache" from page_buffering branch.Quincey Koziol2017-03-132-0/+38
|
* Minor cleanups and bring over "prefetched dirty" fixes for entries loaded fromQuincey Koziol2017-03-129-31/+204
| | | | a cache image.
* Remove some usage of "prefetched_dirty" flag (which hasn't been merged from theQuincey Koziol2017-03-103-416/+577
| | | | | page_buffering branch yet. Also, bring over improvements to flush candidate entries for parallel code.