summaryrefslogtreecommitdiffstats
path: root/src/H5PBprivate.h
diff options
context:
space:
mode:
authormainzer <mainzer#hdfgroup.org>2019-07-06 23:13:36 (GMT)
committermainzer <mainzer#hdfgroup.org>2019-07-06 23:13:36 (GMT)
commita5b7099215bfa19416bade850f84fc5124d57a0c (patch)
tree944a846d21e6e5264cd2af103bb80ffe9d2e4b4c /src/H5PBprivate.h
parent6feabcb42d55c1b47fa011ae915746834c3984b9 (diff)
downloadhdf5-a5b7099215bfa19416bade850f84fc5124d57a0c.zip
hdf5-a5b7099215bfa19416bade850f84fc5124d57a0c.tar.gz
hdf5-a5b7099215bfa19416bade850f84fc5124d57a0c.tar.bz2
Tidied up comments and removed some stats code that is un-reachable.
Diffstat (limited to 'src/H5PBprivate.h')
-rw-r--r--src/H5PBprivate.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/H5PBprivate.h b/src/H5PBprivate.h
index 201a298..d1b6510 100644
--- a/src/H5PBprivate.h
+++ b/src/H5PBprivate.h
@@ -199,7 +199,6 @@ typedef struct H5PB_entry_t H5PB_entry_t;
* linked by their il_next and il_prev fields.
*
* This field is NULL if the index is empty.
-
*
*
* Fields supporting the modified LRU policy:
@@ -288,7 +287,7 @@ typedef struct H5PB_entry_t H5PB_entry_t;
*
* vfd_swmr_writer: Boolean flag that is set to TRUE iff the file is
* the file is opened in VFD SWMR mode. The remaining
- * VFD SWMR flags are defined iff vfd_swmr_writer is TRUE.
+ * VFD SWMR fields are defined iff vfd_swmr_writer is TRUE.
*
* mpmde_count: int64_t containing the number of multi-page metadata
* entries currently resident in the page buffer. Observe
@@ -385,7 +384,7 @@ typedef struct H5PB_entry_t H5PB_entry_t;
* bypasses: Array of int64_t of length H5PB__NUM_STAT_TYPES containing
* the number of times that the page buffer has been
* bypassed for raw data, metadata, and for multi-page
- * metadata entries (VFD SWMR only) as indexed by 5PB__STATS_MD,
+ * metadata entries (VFD SWMR only) as indexed by 5PB__STATS_MD,
* H5PB__STATS_RD, and H5PB__STATS_MPMDE respectively.
*
* accesses: Array of int64_t of length H5PB__NUM_STAT_TYPES containing
@@ -513,14 +512,6 @@ typedef struct H5PB_entry_t H5PB_entry_t;
* If this number becomes excessive, it will be necessary to
* add a holding tank for such entries.
*
- * lru_dwl_skips: When searching for an entry to evict, metadata entries on
- * the LRU must be skipped if they also reside on the tick list.
- *
- * This int64_t is used to keep a count of these skips.
- *
- * If this number becomes excessive, it will be necessary to
- * add a holding tank for such entries.
- *
* max_tl_len: int64_t containing the maximum value of tl_len.
*
* max_tl_size: int64_t containing the maximum value of tl_size.
@@ -647,7 +638,6 @@ typedef struct H5PB_t {
/* vfd swmr statistics */
int64_t max_mpmde_count;
int64_t lru_tl_skips;
- int64_t lru_dwl_skips;
int64_t max_tl_len;
int64_t max_tl_size;
int64_t delayed_writes;