[PATCH] splice: page stealing needs to wait_on_page_writeback()
authorJens Axboe <axboe@suse.de>
Sun, 2 Apr 2006 21:10:32 +0000 (23:10 +0200)
committerJens Axboe <axboe@suse.de>
Sun, 2 Apr 2006 21:10:32 +0000 (23:10 +0200)
commitad8d6f0a783ffa2ff9b0cf09910b889715772201
tree0af4adf5026a9f8d7d3bf4abf9a3d0563a4b03db
parent059a8f3734a66cb2c41731083b0cbf836721485b
[PATCH] splice: page stealing needs to wait_on_page_writeback()

Thanks to Andrew for the good explanation of why this is so. akpm writes:

If a page is under writeback and we remove it from pagecache, it's still
going to get written to disk.  But the VFS no longer knows about that page,
nor that this page is about to modify disk blocks.

So there might be scenarios in which those
blocks-which-are-about-to-be-written-to get reused for something else.
When writeback completes, it'll scribble on those blocks.

This won't happen in ext2/ext3-style filesystems in normal mode because the
page has buffers and try_to_release_page() will fail.

But ext2 in nobh mode doesn't attach buffers at all - it just sticks the
page in a BIO, finds some new blocks, points the BIO at those blocks and
lets it rip.

While that write IO's in flight, someone could truncate the file.  Truncate
won't block on the writeout because the page isn't in pagecache any more.
So truncate will the free the blocks from the file under the page's feet.
Then something else can reallocate those blocks.  Then write data to them.

Now, the original write completes, corrupting the filesystem.

Signed-off-by: Jens Axboe <axboe@suse.de>
fs/splice.c