mirror of https://github.com/xemu-project/xemu.git
migratiom: Remove max_item_age parameter
It was not used at all since commit:
27af7d6ea5
which replaced its use by the dirty sync count.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
This commit is contained in:
parent
5e7577a101
commit
ceaaecb49f
|
@ -41,7 +41,6 @@ struct PageCache {
|
||||||
CacheItem *page_cache;
|
CacheItem *page_cache;
|
||||||
unsigned int page_size;
|
unsigned int page_size;
|
||||||
int64_t max_num_items;
|
int64_t max_num_items;
|
||||||
uint64_t max_item_age;
|
|
||||||
int64_t num_items;
|
int64_t num_items;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -69,7 +68,6 @@ PageCache *cache_init(int64_t num_pages, unsigned int page_size)
|
||||||
}
|
}
|
||||||
cache->page_size = page_size;
|
cache->page_size = page_size;
|
||||||
cache->num_items = 0;
|
cache->num_items = 0;
|
||||||
cache->max_item_age = 0;
|
|
||||||
cache->max_num_items = num_pages;
|
cache->max_num_items = num_pages;
|
||||||
|
|
||||||
DPRINTF("Setting cache buckets to %" PRId64 "\n", cache->max_num_items);
|
DPRINTF("Setting cache buckets to %" PRId64 "\n", cache->max_num_items);
|
||||||
|
|
Loading…
Reference in New Issue