Skip to content

Commit

Permalink
mm/filemap: convert filemap_update_page to return an errno
Browse files Browse the repository at this point in the history
Use AOP_TRUNCATED_PAGE to indicate that no error occurred, but the page we
looked up is no longer valid.  In this case, the reference to the page
will have been removed; if we hit any other error, the caller will release
the reference.

Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Matthew Wilcox (Oracle) <[email protected]>
Reviewed-by: Kent Overstreet <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Cc: Miaohe Lin <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Matthew Wilcox (Oracle) authored and torvalds committed Feb 24, 2021
1 parent f253e18 commit 4612aee
Showing 1 changed file with 17 additions and 21 deletions.
38 changes: 17 additions & 21 deletions mm/filemap.c
Original file line number Diff line number Diff line change
Expand Up @@ -2233,24 +2233,21 @@ static int filemap_read_page(struct file *file, struct address_space *mapping,
return error;
}

static struct page *filemap_update_page(struct kiocb *iocb, struct file *filp,
struct iov_iter *iter, struct page *page, loff_t pos,
loff_t count)
static int filemap_update_page(struct kiocb *iocb,
struct address_space *mapping, struct iov_iter *iter,
struct page *page, loff_t pos, loff_t count)
{
struct address_space *mapping = filp->f_mapping;
struct inode *inode = mapping->host;
int error;

if (iocb->ki_flags & IOCB_WAITQ) {
error = lock_page_async(page, iocb->ki_waitq);
if (error) {
put_page(page);
return ERR_PTR(error);
}
if (error)
return error;
} else {
if (!trylock_page(page)) {
put_and_wait_on_page_locked(page, TASK_KILLABLE);
return NULL;
return AOP_TRUNCATED_PAGE;
}
}

Expand All @@ -2269,25 +2266,21 @@ static struct page *filemap_update_page(struct kiocb *iocb, struct file *filp,
goto readpage;
uptodate:
unlock_page(page);
return page;
return 0;

readpage:
if (iocb->ki_flags & (IOCB_NOIO | IOCB_NOWAIT | IOCB_WAITQ)) {
unlock_page(page);
put_page(page);
return ERR_PTR(-EAGAIN);
return -EAGAIN;
}
error = filemap_read_page(iocb->ki_filp, mapping, page);
if (!error)
return page;
put_page(page);
if (error == AOP_TRUNCATED_PAGE)
return NULL;
return ERR_PTR(error);
put_page(page);
return error;
truncated:
unlock_page(page);
put_page(page);
return NULL;
return AOP_TRUNCATED_PAGE;
}

static int filemap_create_page(struct file *file,
Expand Down Expand Up @@ -2381,18 +2374,21 @@ static int filemap_get_pages(struct kiocb *iocb, struct iov_iter *iter,
goto err;
}

page = filemap_update_page(iocb, filp, iter, page,
err = filemap_update_page(iocb, mapping, iter, page,
pg_pos, pg_count);
if (IS_ERR_OR_NULL(page)) {
if (err) {
if (err < 0)
put_page(page);
pvec->nr--;
err = PTR_ERR_OR_ZERO(page);
}
}
}

err:
if (likely(pvec->nr))
return 0;
if (err == AOP_TRUNCATED_PAGE)
goto find_page;
if (err)
return err;
/*
Expand Down

0 comments on commit 4612aee

Please sign in to comment.