summaryrefslogtreecommitdiffstats
path: root/src/H5Distore.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-04-20 23:54:47 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-04-20 23:54:47 (GMT)
commitd7573cbc857f5a2a843a42b3ea05cd9d3770208d (patch)
treef4e7afbb25303fdc587ab5d95b824ea77cb62407 /src/H5Distore.c
parentad790bfa3c700de8ac49ebeaeffe0be1a876b6de (diff)
downloadhdf5-d7573cbc857f5a2a843a42b3ea05cd9d3770208d.zip
hdf5-d7573cbc857f5a2a843a42b3ea05cd9d3770208d.tar.gz
hdf5-d7573cbc857f5a2a843a42b3ea05cd9d3770208d.tar.bz2
[svn-r12292] Purpose:
Code maintenance Description: Remove flexible parallel code Platforms tested: FreeBSD 4.11 (sleipnir) Linux 2.4 (heping) Solaris 2.9 (shanti) Linux 2.4/64 (mir)
Diffstat (limited to 'src/H5Distore.c')
-rw-r--r--src/H5Distore.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/H5Distore.c b/src/H5Distore.c
index bcf5fee..2978f72 100644
--- a/src/H5Distore.c
+++ b/src/H5Distore.c
@@ -1352,11 +1352,7 @@ H5D_istore_flush (H5D_t *dset, hid_t dxpl_id, unsigned flags)
for (ent=rdcc->head; ent; ent=next) {
next = ent->next;
- if ((flags&H5F_FLUSH_CLEAR_ONLY)) {
- /* Just mark cache entry as clean */
- ent->dirty = FALSE;
- } /* end if */
- else if ((flags&H5F_FLUSH_INVALIDATE)) {
+ if ((flags&H5F_FLUSH_INVALIDATE)) {
if (H5D_istore_preempt(&io_info, ent, TRUE )<0)
nerrors++;
} else {