linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/fadvise: discard partial pages iff endbyte is also eof
@ 2017-12-23  4:16 十刀
  2018-01-03  6:53 ` 夷则(Caspar)
  2018-01-05  6:10 ` [PATCH v2] mm/fadvise: discard partial page if endbyte is also EOF 夷则(Caspar)
  0 siblings, 2 replies; 12+ messages in thread
From: 十刀 @ 2017-12-23  4:16 UTC (permalink / raw)
  To: mgorman, green
  Cc: linux-mm, linux-kernel, 杨勇(智彻),
	夷则(Caspar), 十刀

From: "shidao.ytt" <shidao.ytt@alibaba-inc.com>

in commit 441c228f817f7 ("mm: fadvise: document the
fadvise(FADV_DONTNEED) behaviour for partial pages") Mel Gorman
explained why partial pages should be preserved instead of discarded
when using fadvise(FADV_DONTNEED), however the actual codes to calcuate
end_index was unexpectedly wrong, the code behavior didn't match to the
statement in comments; Luckily in another commit 18aba41cbf
("mm/fadvise.c: do not discard partial pages with POSIX_FADV_DONTNEED")
Oleg Drokin fixed this behavior

Here I come up with a new idea that actually we can still discard the
last parital page iff the page-unaligned endbyte is also the end of
file, since no one else will use the rest of the page and it should be
safe enough to discard.

Signed-off-by: shidao.ytt <shidao.ytt@alibaba-inc.com>
Signed-off-by: Caspar Zhang <jinli.zjl@alibaba-inc.com>
---
 mm/fadvise.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mm/fadvise.c b/mm/fadvise.c
index ec70d6e..f74b21e 100644
--- a/mm/fadvise.c
+++ b/mm/fadvise.c
@@ -127,7 +127,8 @@
 		 */
 		start_index = (offset+(PAGE_SIZE-1)) >> PAGE_SHIFT;
 		end_index = (endbyte >> PAGE_SHIFT);
-		if ((endbyte & ~PAGE_MASK) != ~PAGE_MASK) {
+		if ((endbyte & ~PAGE_MASK) != ~PAGE_MASK &&
+				endbyte != inode->i_size - 1) {
 			/* First page is tricky as 0 - 1 = -1, but pgoff_t
 			 * is unsigned, so the end_index >= start_index
 			 * check below would be true and we'll discard the whole
-- 
1.8.3.1

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2018-01-05  6:10 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-23  4:16 [PATCH] mm/fadvise: discard partial pages iff endbyte is also eof 十刀
2018-01-03  6:53 ` 夷则(Caspar)
2018-01-03 10:48   ` Mel Gorman
2018-01-04  0:17     ` Andrew Morton
2018-01-04  8:17       ` 夷则(Caspar)
2018-01-04 22:54         ` Andrew Morton
2018-01-04 10:05       ` Mel Gorman
2018-01-04  6:13     ` 夷则(Caspar)
2018-01-04  7:44       ` 夷则(Caspar)
2018-01-04 11:34       ` Mel Gorman
2018-01-04 11:38         ` 夷则(Caspar)
2018-01-05  6:10 ` [PATCH v2] mm/fadvise: discard partial page if endbyte is also EOF 夷则(Caspar)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox