mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: zcache: introduce zero filled pages handler
Introduce zero-filled pages handler to capture and handle zero pages. Acked-by: Dan Magenheimer <dan.magenheimer@oracle.com> Signed-off-by: Wanpeng Li <liwanp@linux.vnet.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ad3c025b35
commit
dcb4e2d9bb
1 changed files with 26 additions and 0 deletions
|
@ -277,6 +277,32 @@ static void zcache_obj_free(struct tmem_obj *obj, struct tmem_pool *pool)
|
|||
kmem_cache_free(zcache_obj_cache, obj);
|
||||
}
|
||||
|
||||
static bool page_is_zero_filled(void *ptr)
|
||||
{
|
||||
unsigned int pos;
|
||||
unsigned long *page;
|
||||
|
||||
page = (unsigned long *)ptr;
|
||||
|
||||
for (pos = 0; pos < PAGE_SIZE / sizeof(*page); pos++) {
|
||||
if (page[pos])
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void handle_zero_filled_page(void *page)
|
||||
{
|
||||
void *user_mem;
|
||||
|
||||
user_mem = kmap_atomic(page);
|
||||
memset(user_mem, 0, PAGE_SIZE);
|
||||
kunmap_atomic(user_mem);
|
||||
|
||||
flush_dcache_page(page);
|
||||
}
|
||||
|
||||
static struct tmem_hostops zcache_hostops = {
|
||||
.obj_alloc = zcache_obj_alloc,
|
||||
.obj_free = zcache_obj_free,
|
||||
|
|
Loading…
Reference in a new issue