3 * The cache is base on a hash of the page address
5 * Copyright 2012 Red Hat, Inc. and/or its affiliates
8 * Orit Wasserman <owasserm@redhat.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
20 #include <sys/types.h>
24 #include "qemu-common.h"
25 #include "migration/page_cache.h"
28 #define DPRINTF(fmt, ...) \
29 do { fprintf(stdout, "cache: " fmt, ## __VA_ARGS__); } while (0)
31 #define DPRINTF(fmt, ...) \
35 /* the page in cache will not be replaced in two cycles */
36 #define CACHED_PAGE_LIFETIME 2
38 typedef struct CacheItem CacheItem
;
47 CacheItem
*page_cache
;
48 unsigned int page_size
;
49 int64_t max_num_items
;
50 uint64_t max_item_age
;
54 PageCache
*cache_init(int64_t num_pages
, unsigned int page_size
)
61 DPRINTF("invalid number of pages\n");
65 /* We prefer not to abort if there is no memory */
66 cache
= g_try_malloc(sizeof(*cache
));
68 DPRINTF("Failed to allocate cache\n");
71 /* round down to the nearest power of 2 */
72 if (!is_power_of_2(num_pages
)) {
73 num_pages
= pow2floor(num_pages
);
74 DPRINTF("rounding down to %" PRId64
"\n", num_pages
);
76 cache
->page_size
= page_size
;
78 cache
->max_item_age
= 0;
79 cache
->max_num_items
= num_pages
;
81 DPRINTF("Setting cache buckets to %" PRId64
"\n", cache
->max_num_items
);
83 /* We prefer not to abort if there is no memory */
84 cache
->page_cache
= g_try_malloc((cache
->max_num_items
) *
85 sizeof(*cache
->page_cache
));
86 if (!cache
->page_cache
) {
87 DPRINTF("Failed to allocate cache->page_cache\n");
92 for (i
= 0; i
< cache
->max_num_items
; i
++) {
93 cache
->page_cache
[i
].it_data
= NULL
;
94 cache
->page_cache
[i
].it_age
= 0;
95 cache
->page_cache
[i
].it_addr
= -1;
101 void cache_fini(PageCache
*cache
)
106 g_assert(cache
->page_cache
);
108 for (i
= 0; i
< cache
->max_num_items
; i
++) {
109 g_free(cache
->page_cache
[i
].it_data
);
112 g_free(cache
->page_cache
);
113 cache
->page_cache
= NULL
;
117 static size_t cache_get_cache_pos(const PageCache
*cache
,
122 g_assert(cache
->max_num_items
);
123 pos
= (address
/ cache
->page_size
) & (cache
->max_num_items
- 1);
127 static CacheItem
*cache_get_by_addr(const PageCache
*cache
, uint64_t addr
)
132 g_assert(cache
->page_cache
);
134 pos
= cache_get_cache_pos(cache
, addr
);
136 return &cache
->page_cache
[pos
];
139 uint8_t *get_cached_data(const PageCache
*cache
, uint64_t addr
)
141 return cache_get_by_addr(cache
, addr
)->it_data
;
144 bool cache_is_cached(const PageCache
*cache
, uint64_t addr
,
145 uint64_t current_age
)
149 it
= cache_get_by_addr(cache
, addr
);
151 if (it
->it_addr
== addr
) {
152 /* update the it_age when the cache hit */
153 it
->it_age
= current_age
;
159 int cache_insert(PageCache
*cache
, uint64_t addr
, const uint8_t *pdata
,
160 uint64_t current_age
)
165 /* actual update of entry */
166 it
= cache_get_by_addr(cache
, addr
);
168 if (it
->it_data
&& it
->it_addr
!= addr
&&
169 it
->it_age
+ CACHED_PAGE_LIFETIME
> current_age
) {
170 /* the cache page is fresh, don't replace it */
175 it
->it_data
= g_try_malloc(cache
->page_size
);
177 DPRINTF("Error allocating page\n");
183 memcpy(it
->it_data
, pdata
, cache
->page_size
);
185 it
->it_age
= current_age
;
191 int64_t cache_resize(PageCache
*cache
, int64_t new_num_pages
)
193 PageCache
*new_cache
;
196 CacheItem
*old_it
, *new_it
;
200 /* cache was not inited */
201 if (cache
->page_cache
== NULL
) {
206 if (pow2floor(new_num_pages
) == cache
->max_num_items
) {
207 return cache
->max_num_items
;
210 new_cache
= cache_init(new_num_pages
, cache
->page_size
);
212 DPRINTF("Error creating new cache\n");
216 /* move all data from old cache */
217 for (i
= 0; i
< cache
->max_num_items
; i
++) {
218 old_it
= &cache
->page_cache
[i
];
219 if (old_it
->it_addr
!= -1) {
220 /* check for collision, if there is, keep MRU page */
221 new_it
= cache_get_by_addr(new_cache
, old_it
->it_addr
);
222 if (new_it
->it_data
&& new_it
->it_age
>= old_it
->it_age
) {
223 /* keep the MRU page */
224 g_free(old_it
->it_data
);
226 if (!new_it
->it_data
) {
227 new_cache
->num_items
++;
229 g_free(new_it
->it_data
);
230 new_it
->it_data
= old_it
->it_data
;
231 new_it
->it_age
= old_it
->it_age
;
232 new_it
->it_addr
= old_it
->it_addr
;
237 g_free(cache
->page_cache
);
238 cache
->page_cache
= new_cache
->page_cache
;
239 cache
->max_num_items
= new_cache
->max_num_items
;
240 cache
->num_items
= new_cache
->num_items
;
244 return cache
->max_num_items
;