summaryrefslogtreecommitdiffstats
path: root/src/H5Ctag.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2016-11-28 07:26:33 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2016-11-28 07:26:33 (GMT)
commit2cb2d5a533c2de7503014da3250c3088e1ba089d (patch)
tree9740b29b82ee17921021bbabe35cd0d42e1510af /src/H5Ctag.c
parent460b573a73e1cfa73ad16dc7fff286fd561ff735 (diff)
downloadhdf5-2cb2d5a533c2de7503014da3250c3088e1ba089d.zip
hdf5-2cb2d5a533c2de7503014da3250c3088e1ba089d.tar.gz
hdf5-2cb2d5a533c2de7503014da3250c3088e1ba089d.tar.bz2
Remove "collective write list" parameter from H5C__flush_single_entry() as it
is only used in a couple of places. The collective write list has been moved to be internal to the cache data structure instead.
Diffstat (limited to 'src/H5Ctag.c')
-rw-r--r--src/H5Ctag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ctag.c b/src/H5Ctag.c
index 33f7c22..6d5b454 100644
--- a/src/H5Ctag.c
+++ b/src/H5Ctag.c
@@ -467,7 +467,7 @@ H5C__evict_tagged_entries_cb(H5C_cache_entry_t *entry, void *_ctx)
ctx->pinned_entries_need_evicted = TRUE;
else {
/* Evict the Entry */
- if(H5C__flush_single_entry(ctx->f, ctx->dxpl_id, entry, H5C__FLUSH_INVALIDATE_FLAG | H5C__FLUSH_CLEAR_ONLY_FLAG | H5C__DEL_FROM_SLIST_ON_DESTROY_FLAG, NULL) < 0)
+ if(H5C__flush_single_entry(ctx->f, ctx->dxpl_id, entry, H5C__FLUSH_INVALIDATE_FLAG | H5C__FLUSH_CLEAR_ONLY_FLAG | H5C__DEL_FROM_SLIST_ON_DESTROY_FLAG) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTFLUSH, H5_ITER_ERROR, "Entry eviction failed.")
ctx->evicted_entries_last_pass = TRUE;
} /* end else */