Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f2b1c41c authored by Chris Mason's avatar Chris Mason
Browse files

Btrfs: Make sure pages are dirty before doing delalloc for them



This adds a PageDirty check to the writeback path that locks pages
for delalloc.  If a page wasn't dirty at this point, it is in the
process of being truncated away.

Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent 5b7c3fcc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1205,7 +1205,8 @@ static noinline int lock_delalloc_pages(struct inode *inode,
			 */
			if (pages[i] != locked_page) {
				lock_page(pages[i]);
				if (pages[i]->mapping != inode->i_mapping) {
				if (!PageDirty(pages[i]) ||
				    pages[i]->mapping != inode->i_mapping) {
					ret = -EAGAIN;
					unlock_page(pages[i]);
					page_cache_release(pages[i]);