Commit 7e796024 authored by Trond Myklebust's avatar Trond Myklebust

[PATCH] NFS coherency fix

DOH!!! Somebody clone me a replacement brain: I must have burnt
another fuse.  It turns out the new readpages was evading our
read/write serialization.

This broke things like 'ld' over NFS, which rewrites chunks of
files it has already written.
parent 98de8e91
......@@ -367,9 +367,11 @@ static int
readpage_async_filler(void *data, struct page *page)
{
struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
struct inode *inode = page->mapping->host;
struct nfs_page *new;
new = nfs_create_request(nfs_file_cred(desc->filp),
page->mapping->host, page,
nfs_wb_page(inode, page);
new = nfs_create_request(nfs_file_cred(desc->filp), inode, page,
0, PAGE_CACHE_SIZE);
if (IS_ERR(new)) {
SetPageError(page);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment