@@ -288,7 +288,7 @@ static cache_obj_t *LeCaR_find(cache_t *cache, const request_t *req,
288288 * when remove_obj_from_freq_node */
289289 if (cache_obj -> LeCaR .freq < params -> min_freq ) {
290290 params -> min_freq = cache_obj -> LeCaR .freq ;
291- VVERBOSE ("update min freq to %d\n" , (int )params -> min_freq );
291+ VERBOSE ("update min freq to %d\n" , (int )params -> min_freq );
292292 }
293293 }
294294
@@ -312,7 +312,7 @@ static cache_obj_t *LeCaR_find(cache_t *cache, const request_t *req,
312312cache_obj_t * LeCaR_insert (cache_t * cache , const request_t * req ) {
313313 LeCaR_params_t * params = (LeCaR_params_t * )(cache -> eviction_params );
314314
315- VVERBOSE ("insert object %lu into cache\n" , (unsigned long )req -> obj_id );
315+ VERBOSE ("insert object %lu into cache\n" , (unsigned long )req -> obj_id );
316316
317317 // LRU and hash table insert
318318 cache_obj_t * cache_obj = cache_insert_base (cache , req );
@@ -652,7 +652,7 @@ static inline void update_LFU_min_freq(LeCaR_params_t *params) {
652652 break ;
653653 }
654654 }
655- VVERBOSE ("update LFU min freq from %ld to %ld\n" , old_min_freq ,
655+ VERBOSE ("update LFU min freq from %ld to %ld\n" , old_min_freq ,
656656 params -> min_freq );
657657 // if the object is the only object in the cache, we may have min_freq == 1
658658 DEBUG_ASSERT (params -> min_freq > old_min_freq ||
@@ -682,19 +682,19 @@ static inline void remove_obj_from_freq_node(LeCaR_params_t *params,
682682 DEBUG_ASSERT (freq_node != NULL );
683683 DEBUG_ASSERT (freq_node -> freq == cache_obj -> LeCaR .freq );
684684 DEBUG_ASSERT (freq_node -> n_obj > 0 );
685- VVERBOSE ("remove object from freq node %p (freq %ld, %u obj)\n" , freq_node ,
685+ VERBOSE ("remove object from freq node %p (freq %ld, %u obj)\n" , freq_node ,
686686 freq_node -> freq , freq_node -> n_obj );
687687 freq_node -> n_obj -- ;
688688
689689 if (cache_obj == freq_node -> first_obj ) {
690- VVVERBOSE ("remove object from freq node --- object is the first object\n" );
690+ VERBOSE ("remove object from freq node --- object is the first object\n" );
691691 freq_node -> first_obj = cache_obj -> LeCaR .lfu_next ;
692692 if (cache_obj -> LeCaR .lfu_next != NULL )
693693 ((cache_obj_t * )(cache_obj -> LeCaR .lfu_next ))-> LeCaR .lfu_prev = NULL ;
694694 }
695695
696696 if (cache_obj == freq_node -> last_obj ) {
697- VVVERBOSE ("remove object from freq node --- object is the last object\n" );
697+ VERBOSE ("remove object from freq node --- object is the last object\n" );
698698 freq_node -> last_obj = cache_obj -> LeCaR .lfu_prev ;
699699 if (cache_obj -> LeCaR .lfu_prev != NULL )
700700 ((cache_obj_t * )(cache_obj -> LeCaR .lfu_prev ))-> LeCaR .lfu_next = NULL ;
@@ -787,7 +787,7 @@ static void verify_ghost_lru_integrity(cache_t *cache, LeCaR_params_t *params) {
787787 cur = cur -> queue .next ;
788788 }
789789
790- VVVERBOSE (
790+ VERBOSE (
791791 "ghost entry head %p tail %p, "
792792 "ghost_entry_size from scan = %ld,"
793793 "lru_g_occupied_byte = %ld\n " ,
0 commit comments