linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH] mm/shmem: Fix undo range for failed fallocate
@ 2022-11-01  3:22 Rui Wang
  2022-11-02 14:41 ` Matthew Wilcox
  0 siblings, 1 reply; 8+ messages in thread
From: Rui Wang @ 2022-11-01  3:22 UTC (permalink / raw)
  To: linux-mm; +Cc: Guoqi, Huacai Chen, Rui Wang

This patch fixes data loss caused by the fallocate system
call interrupted by a signal.

Bug: https://lore.kernel.org/linux-mm/33b85d82.7764.1842e9ab207.Coremail.chenguoqic@163.com/
Fixes: b9a8a4195c7d ("truncate,shmem: Handle truncates that split large folios")
Reported-by: Guoqi Chen <chenguoqic@163.com>
Cc: Huacai Chen <chenhuacai@loongson.cn>
Signed-off-by: Rui Wang <kernel@hev.cc>
---
 mm/shmem.c | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/mm/shmem.c b/mm/shmem.c
index bc9b84602eec..8c8dce34eafc 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -948,11 +948,13 @@ static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
 	folio = shmem_get_partial_folio(inode, lstart >> PAGE_SHIFT);
 	if (folio) {
 		same_folio = lend < folio_pos(folio) + folio_size(folio);
-		folio_mark_dirty(folio);
-		if (!truncate_inode_partial_folio(folio, lstart, lend)) {
-			start = folio->index + folio_nr_pages(folio);
-			if (same_folio)
-				end = folio->index;
+		if (!unfalloc || !folio_test_uptodate(folio)) {
+			folio_mark_dirty(folio);
+			if (!truncate_inode_partial_folio(folio, lstart, lend)) {
+				start = folio->index + folio_nr_pages(folio);
+				if (same_folio)
+					end = folio->index;
+			}
 		}
 		folio_unlock(folio);
 		folio_put(folio);
@@ -962,9 +964,11 @@ static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
 	if (!same_folio)
 		folio = shmem_get_partial_folio(inode, lend >> PAGE_SHIFT);
 	if (folio) {
-		folio_mark_dirty(folio);
-		if (!truncate_inode_partial_folio(folio, lstart, lend))
-			end = folio->index;
+		if (!unfalloc || !folio_test_uptodate(folio)) {
+			folio_mark_dirty(folio);
+			if (!truncate_inode_partial_folio(folio, lstart, lend))
+				end = folio->index;
+		}
 		folio_unlock(folio);
 		folio_put(folio);
 	}
-- 
2.38.1



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

end of thread, other threads:[~2022-12-05  0:51 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-01  3:22 [RFC PATCH] mm/shmem: Fix undo range for failed fallocate Rui Wang
2022-11-02 14:41 ` Matthew Wilcox
2022-11-03  7:52   ` hev
2022-11-19 14:45     ` hev
2022-11-19 20:20       ` Matthew Wilcox
2022-11-23  4:02     ` Hugh Dickins
2022-12-05  0:45       ` Hugh Dickins
2022-12-05  0:51         ` [PATCH] tmpfs: fix data loss from " Hugh Dickins

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).