Rename "evp_lru*" functions to "ocf_lru*"
Signed-off-by: Adam Rutkowski <adam.j.rutkowski@intel.com>
This commit is contained in:
@@ -132,7 +132,7 @@ void set_cache_line_clean(struct ocf_cache *cache, uint8_t start_bit,
|
||||
*/
|
||||
env_atomic_dec(&req->core->runtime_meta->
|
||||
part_counters[part_id].dirty_clines);
|
||||
evp_lru_clean_cline(cache, part, line);
|
||||
ocf_lru_clean_cline(cache, part, line);
|
||||
ocf_purge_cleaning_policy(cache, line);
|
||||
}
|
||||
}
|
||||
@@ -174,7 +174,7 @@ void set_cache_line_dirty(struct ocf_cache *cache, uint8_t start_bit,
|
||||
*/
|
||||
env_atomic_inc(&req->core->runtime_meta->
|
||||
part_counters[part_id].dirty_clines);
|
||||
evp_lru_dirty_cline(cache, part, line);
|
||||
ocf_lru_dirty_cline(cache, part, line);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -179,7 +179,7 @@ static inline void ocf_purge_cleaning_policy(struct ocf_cache *cache,
|
||||
static inline void ocf_purge_eviction_policy(struct ocf_cache *cache,
|
||||
ocf_cache_line_t line)
|
||||
{
|
||||
evp_lru_rm_cline(cache, line);
|
||||
ocf_lru_rm_cline(cache, line);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user