mm/shmem: fix race in shmem_undo_range w/THP
authorDavid Stevens <stevensd@chromium.org>
Tue, 18 Apr 2023 08:40:31 +0000 (17:40 +0900)
committerAndrew Morton <akpm@linux-foundation.org>
Wed, 13 Dec 2023 01:20:19 +0000 (17:20 -0800)
commit55ac8bbe358bdd2f3c044c12f249fd22d48fe015
tree9ce5d9290c1f8159bcf17a608afcc7a392f8082d
parent43e8832fed08438e2a27afed9bac21acd0ceffe5
mm/shmem: fix race in shmem_undo_range w/THP

Split folios during the second loop of shmem_undo_range.  It's not
sufficient to only split folios when dealing with partial pages, since
it's possible for a THP to be faulted in after that point.  Calling
truncate_inode_folio in that situation can result in throwing away data
outside of the range being targeted.

[akpm@linux-foundation.org: tidy up comment layout]
Link: https://lkml.kernel.org/r/20230418084031.3439795-1-stevensd@google.com
Fixes: b9a8a4195c7d ("truncate,shmem: Handle truncates that split large folios")
Signed-off-by: David Stevens <stevensd@chromium.org>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Cc: Suleiman Souhlal <suleiman@google.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/shmem.c