staging/vchi: Update for rename of page_cache_release() to put_page().

Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Eric Anholt 2016-10-03 11:52:07 -07:00 committed by Greg Kroah-Hartman
parent 166beccd47
commit 232664b386
2 changed files with 3 additions and 3 deletions

View file

@ -439,7 +439,7 @@ create_pagelist(char __user *buf, size_t count, unsigned short type,
while (actual_pages > 0)
{
actual_pages--;
page_cache_release(pages[actual_pages]);
put_page(pages[actual_pages]);
}
kfree(pagelist);
if (actual_pages == 0)
@ -578,7 +578,7 @@ free_pagelist(PAGELIST_T *pagelist, int actual)
offset = 0;
set_page_dirty(pg);
}
page_cache_release(pg);
put_page(pg);
}
}

View file

@ -1512,7 +1512,7 @@ dump_phys_mem(void *virt_addr, uint32_t num_bytes)
kunmap(page);
for (page_idx = 0; page_idx < num_pages; page_idx++)
page_cache_release(pages[page_idx]);
put_page(pages[page_idx]);
kfree(pages);
}