mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 04:21:03 -04:00
Staging: lustre: dir: Remove wrapper function
Remove the function ll_check_page() and replace all its calls with the function it wrapped. Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com> Acked-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ee98e44249
commit
c6ef5b91f3
@@ -239,12 +239,6 @@ static int ll_dir_filler(void *_hash, struct page *page0)
|
||||
return rc;
|
||||
}
|
||||
|
||||
static void ll_check_page(struct inode *dir, struct page *page)
|
||||
{
|
||||
/* XXX: check page format later */
|
||||
SetPageChecked(page);
|
||||
}
|
||||
|
||||
void ll_release_page(struct page *page, int remove)
|
||||
{
|
||||
kunmap(page);
|
||||
@@ -432,7 +426,8 @@ struct page *ll_get_dir_page(struct inode *dir, __u64 hash,
|
||||
goto fail;
|
||||
}
|
||||
if (!PageChecked(page))
|
||||
ll_check_page(dir, page);
|
||||
/* XXX: check page format later */
|
||||
SetPageChecked(page);
|
||||
if (PageError(page)) {
|
||||
CERROR("page error: "DFID" at %llu: rc %d\n",
|
||||
PFID(ll_inode2fid(dir)), hash, -5);
|
||||
|
||||
Reference in New Issue
Block a user