summaryrefslogtreecommitdiffstats
path: root/src/H5Cdbg.c
Commit message (Collapse)AuthorAgeFilesLines
* Removed commeted out code from H5C_dump_coll_write_list()mainzer2017-04-071-5/+0
|
* Checkin of fix for CGNS bugmainzer2017-04-061-1/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (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.
* Omnibus checkin for several relatively minor modifications:mainzer2017-03-281-1/+3
| | | | | | | | | | | | | | | | | | | | 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.
* Minor cleanups and bring over "prefetched dirty" fixes for entries loaded fromQuincey Koziol2017-03-121-6/+100
| | | | a cache image.
* Normalize against incoming page buffering changes.Quincey Koziol2017-03-011-9/+5
|
* Corrected version of 4b5e05c084f93c35dae946c2c9e814d565a613b0:Quincey Koziol2017-02-281-4/+4
| | | | | Fix some more signed -> unsigned value issues with cache data structures, also misc. style cleanups. All to align w/incoming page_buffering changes.
* Revert "Fix some more signed -> unsigned value issues with cache data ↵Quincey Koziol2017-02-281-2/+2
| | | | | | structures, also" This reverts commit 4b5e05c084f93c35dae946c2c9e814d565a613b0.
* Fix some more signed -> unsigned value issues with cache data structures, alsoQuincey Koziol2017-02-231-2/+2
| | | | misc. style cleanups. All to align w/incoming page_buffering changes.
* Misc. style cleanups from the page_buffering branch.Quincey Koziol2017-02-181-11/+11
|
* Cache image feature and testingQuincey Koziol2017-01-291-0/+405
|
* Bring change to use array of metadata cache entry classes for H5C_createQuincey Koziol2017-01-281-1/+1
| | | | instead of array of class names from cache image branch.
* Switch list lengths to unsigned integers (to align better w/cache image merge)Quincey Koziol2017-01-281-18/+18
|
* Bring file shutdown code from cache image branchQuincey Koziol2017-01-051-0/+43
|
* Bring support for doubly-linked list of all entries in cache from incomingQuincey Koziol2016-12-301-3/+3
| | | | cache image branch.
* More normalizations against incoming cache image branch.Quincey Koziol2016-12-291-35/+8
|
* Updated the cache dump to use the stored type name insteadDana Robinson2016-11-281-38/+4
| | | | of the (redundant) array of names I previously created.
* Updated the format of H5AC/C_dump_cache() to includeDana Robinson2016-11-281-12/+61
| | | | more information and be easier to read.
* Switch to new, more scalable, metadata cache entry tagging.Quincey Koziol2016-11-071-3/+5
|
* Move cache debugging routines into separate module.Quincey Koziol2016-11-031-0/+964