summaryrefslogtreecommitdiff
path: root/migration
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2017-10-06 18:07:42 +0200
committerJuan Quintela <quintela@redhat.com>2017-10-23 18:03:22 +0200
commitceaaecb49ff99b871aac64329c1a0708abc696a4 (patch)
treec01f0379b9847271dc2874e5dd650ee5bc96c510 /migration
parent5e7577a101d8db8015c7dbc3ab977a41d5b3afdc (diff)
downloadqemu-ceaaecb49ff99b871aac64329c1a0708abc696a4.tar.gz
migratiom: Remove max_item_age parameter
It was not used at all since commit: 27af7d6ea5015e5ef1f7985eab94a8a218267a2b which replaced its use by the dirty sync count. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'migration')
-rw-r--r--migration/page_cache.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/migration/page_cache.c b/migration/page_cache.c
index ba984c4858..381e555ddb 100644
--- a/migration/page_cache.c
+++ b/migration/page_cache.c
@@ -41,7 +41,6 @@ struct PageCache {
CacheItem *page_cache;
unsigned int page_size;
int64_t max_num_items;
- uint64_t max_item_age;
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->num_items = 0;
- cache->max_item_age = 0;
cache->max_num_items = num_pages;
DPRINTF("Setting cache buckets to %" PRId64 "\n", cache->max_num_items);