Skip to content

Commit 61c6de6

Browse files
pjaroszynskitorvalds
authored andcommitted
fs/iomap.c: get/put the page in iomap_page_create/release()
migrate_page_move_mapping() expects pages with private data set to have a page_count elevated by 1. This is what used to happen for xfs through the buffer_heads code before the switch to iomap in commit 82cb141 ("xfs: add support for sub-pagesize writeback without buffer_heads"). Not having the count elevated causes move_pages() to fail on memory mapped files coming from xfs. Make iomap compatible with the migrate_page_move_mapping() assumption by elevating the page count as part of iomap_page_create() and lowering it in iomap_page_release(). It causes the move_pages() syscall to misbehave on memory mapped files from xfs. It does not not move any pages, which I suppose is "just" a perf issue, but it also ends up returning a positive number which is out of spec for the syscall. Talking to Michal Hocko, it sounds like returning positive numbers might be a necessary update to move_pages() anyway though (https://lkml.kernel.org/r/20181116114955.GJ14706@dhcp22.suse.cz). I only hit this in tests that verify that move_pages() actually moved the pages. The test also got confused by the positive return from move_pages() (it got treated as a success as positive numbers were not expected and not handled) making it a bit harder to track down what's going on. Link: http://lkml.kernel.org/r/20181115184140.1388751-1-pjaroszynski@nvidia.com Fixes: 82cb141 ("xfs: add support for sub-pagesize writeback without buffer_heads") Signed-off-by: Piotr Jaroszynski <pjaroszynski@nvidia.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Cc: William Kucharski <william.kucharski@oracle.com> Cc: Darrick J. Wong <darrick.wong@oracle.com> Cc: Brian Foster <bfoster@redhat.com> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 8ace22b commit 61c6de6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

fs/iomap.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,12 @@ iomap_page_create(struct inode *inode, struct page *page)
116116
atomic_set(&iop->read_count, 0);
117117
atomic_set(&iop->write_count, 0);
118118
bitmap_zero(iop->uptodate, PAGE_SIZE / SECTOR_SIZE);
119+
120+
/*
121+
* migrate_page_move_mapping() assumes that pages with private data have
122+
* their count elevated by 1.
123+
*/
124+
get_page(page);
119125
set_page_private(page, (unsigned long)iop);
120126
SetPagePrivate(page);
121127
return iop;
@@ -132,6 +138,7 @@ iomap_page_release(struct page *page)
132138
WARN_ON_ONCE(atomic_read(&iop->write_count));
133139
ClearPagePrivate(page);
134140
set_page_private(page, 0);
141+
put_page(page);
135142
kfree(iop);
136143
}
137144

0 commit comments

Comments
 (0)