From: "Matthew Wilcox (Oracle)" <willy@infradead.org>
To: Al Viro <viro@zeniv.linux.org.uk>
Cc: "Matthew Wilcox (Oracle)" <willy@infradead.org>,
linux-fsdevel@vger.kernel.org,
"Darrick J . Wong" <darrick.wong@oracle.com>,
Andreas Gruenbacher <agruenba@redhat.com>
Subject: [PATCH] fs: Make page_mkwrite_check_truncate thp-aware
Date: Tue, 15 Sep 2020 17:04:23 +0100 [thread overview]
Message-ID: <20200915160423.15785-1-willy@infradead.org> (raw)
If the page is compound, check the last index in the page and return
the appropriate size. Change the return type to ssize_t in case we ever
support pages larger than 2GB.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
---
include/linux/pagemap.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h
index 2b637960be3a..655ecee666e6 100644
--- a/include/linux/pagemap.h
+++ b/include/linux/pagemap.h
@@ -982,22 +982,22 @@ static inline unsigned long dir_pages(struct inode *inode)
* @page: the page to check
* @inode: the inode to check the page against
*
- * Returns the number of bytes in the page up to EOF,
+ * Return: The number of bytes in the page up to EOF,
* or -EFAULT if the page was truncated.
*/
-static inline int page_mkwrite_check_truncate(struct page *page,
+static inline ssize_t page_mkwrite_check_truncate(struct page *page,
struct inode *inode)
{
loff_t size = i_size_read(inode);
pgoff_t index = size >> PAGE_SHIFT;
- int offset = offset_in_page(size);
+ unsigned long offset = offset_in_thp(page, size);
if (page->mapping != inode->i_mapping)
return -EFAULT;
/* page is wholly inside EOF */
- if (page->index < index)
- return PAGE_SIZE;
+ if (page->index + thp_nr_pages(page) - 1 < index)
+ return thp_size(page);
/* page is wholly past EOF */
if (page->index > index || !offset)
return -EFAULT;
--
2.28.0
reply other threads:[~2020-09-15 22:21 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200915160423.15785-1-willy@infradead.org \
--to=willy@infradead.org \
--cc=agruenba@redhat.com \
--cc=darrick.wong@oracle.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=viro@zeniv.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).