From: Andrew Morton <akpm@osdl.org>
To: linda.dunaphant@ccur.com
Cc: trond.myklebust@fys.uio.no, linux-kernel@vger.kernel.org
Subject: Re: NFS: msync required for data writes to server?
Date: Thu, 12 May 2005 19:42:10 -0700 [thread overview]
Message-ID: <20050512194210.10a9dc93.akpm@osdl.org> (raw)
In-Reply-To: <1115950903.6319.25.camel@lindad>
Linda Dunaphant <linda.dunaphant@ccur.com> wrote:
>
> The behavior that you describe is what I expected to see. However, with
> my test program that mmap's the NFS file on the client, writes the data,
> and then munmap's the file, this wasn't the case with the 2.6.9 based
> kernel I was using. The file data was NEVER being written to the server.
There's something very wrong with that.
> This afternoon I downloaded and built several later kernels. I found
> that with 2.6.11, the problem still occurred. With 2.6.12-rc1, the
> problem did not occur. I could see the proper data on the server.
>
> Looking at the differences in fs/nfs between these trees I found a
> change to nfs_file_release() in fs/nfs/file.c. When I applied this
> change to my 2.6.9 tree, the data was written out to the server.
>
> @@ -105,6 +108,9 @@
> static int
> nfs_file_release(struct inode *inode, struct file *filp)
> {
> + /* Ensure that dirty pages are flushed out with the right creds
> */
> + if (filp->f_mode & FMODE_WRITE)
> + filemap_fdatawrite(filp->f_mapping);
> return NFS_PROTO(inode)->file_release(inode, filp);
> }
Well yes, that'll sync the file on close, but it doesn't explain the
original problem.
next prev parent reply other threads:[~2005-05-13 2:42 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-12 19:21 Linda Dunaphant
2005-05-13 0:57 ` Andrew Morton
2005-05-13 2:21 ` Linda Dunaphant
2005-05-13 2:42 ` Andrew Morton [this message]
2005-05-13 3:41 ` Linda Dunaphant
2005-05-13 3:48 ` Trond Myklebust
2005-05-13 23:57 ` Linda Dunaphant
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050512194210.10a9dc93.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=linda.dunaphant@ccur.com \
--cc=linux-kernel@vger.kernel.org \
--cc=trond.myklebust@fys.uio.no \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®