Skip to content

Commit

Permalink
staging/vchi: Update for rename of page_cache_release() to put_page().
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Anholt <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
anholt authored and gregkh committed Oct 16, 2016
1 parent 166becc commit 232664b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -578,7 +578,7 @@ free_pagelist(PAGELIST_T *pagelist, int actual)
offset = 0;
set_page_dirty(pg);
}
page_cache_release(pg);
put_page(pg);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 232664b

Please sign in to comment.