diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2022-01-12 22:58:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 22:58:45 (GMT) |
commit | 166ce5b02770b5f685d0a26688b17fa4c4bf0db1 (patch) | |
tree | ed9942d0aef97b6249c3d3fd03f21b14ea5080b1 | |
parent | 5fffd563dea7bc75fa500a60987e93bc8e39ee2f (diff) | |
download | hdf5-166ce5b02770b5f685d0a26688b17fa4c4bf0db1.zip hdf5-166ce5b02770b5f685d0a26688b17fa4c4bf0db1.tar.gz hdf5-166ce5b02770b5f685d0a26688b17fa4c4bf0db1.tar.bz2 |
Fix H5ACmpio dirty bytes creation debugging (#1357)
-rw-r--r-- | src/H5ACmpio.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5ACmpio.c b/src/H5ACmpio.c index 500a05a..dc155f5 100644 --- a/src/H5ACmpio.c +++ b/src/H5ACmpio.c @@ -2093,11 +2093,11 @@ H5AC__run_sync_point(H5F_t *f, int sync_point_op) (sync_point_op == H5AC_METADATA_WRITE_STRATEGY__DISTRIBUTED)); #if H5AC_DEBUG_DIRTY_BYTES_CREATION - HDfprintf(stdout, "%d:H5AC_propagate...:%u: (u/uu/i/iu/r/ru) = %zu/%u/%zu/%u/%zu/%u\n", aux_ptr->mpi_rank, + HDfprintf(stdout, "%d:H5AC_propagate...:%u: (u/uu/i/iu/m/mu) = %zu/%u/%zu/%u/%zu/%u\n", aux_ptr->mpi_rank, aux_ptr->dirty_bytes_propagations, aux_ptr->unprotect_dirty_bytes, aux_ptr->unprotect_dirty_bytes_updates, aux_ptr->insert_dirty_bytes, - aux_ptr->insert_dirty_bytes_updates, aux_ptr->rename_dirty_bytes, - aux_ptr->rename_dirty_bytes_updates); + aux_ptr->insert_dirty_bytes_updates, aux_ptr->move_dirty_bytes, + aux_ptr->move_dirty_bytes_updates); #endif /* H5AC_DEBUG_DIRTY_BYTES_CREATION */ /* clear collective access flag on half of the entries in the @@ -2161,8 +2161,8 @@ H5AC__run_sync_point(H5F_t *f, int sync_point_op) aux_ptr->unprotect_dirty_bytes_updates = 0; aux_ptr->insert_dirty_bytes = 0; aux_ptr->insert_dirty_bytes_updates = 0; - aux_ptr->rename_dirty_bytes = 0; - aux_ptr->rename_dirty_bytes_updates = 0; + aux_ptr->move_dirty_bytes = 0; + aux_ptr->move_dirty_bytes_updates = 0; #endif /* H5AC_DEBUG_DIRTY_BYTES_CREATION */ done: |