From: Mike Snitzer <snitzer@kernel.org>
To: Tom Talpey <tom@talpey.com>
Cc: Chuck Lever <cel@kernel.org>, NeilBrown <neil@brown.name>,
Jeff Layton <jlayton@kernel.org>,
Olga Kornievskaia <okorniev@redhat.com>,
Dai Ngo <dai.ngo@oracle.com>,
linux-nfs@vger.kernel.org, Chuck Lever <chuck.lever@oracle.com>
Subject: Re: [RFC PATCH] NFSD: Make FILE_SYNC WRITEs comply with spec
Date: Wed, 22 Oct 2025 13:46:33 -0400 [thread overview]
Message-ID: <aPkYedLyruWyCO0o@kernel.org> (raw)
In-Reply-To: <63c79d16-fec8-47f2-ace3-0b8fd4f41528@talpey.com>
On Wed, Oct 22, 2025 at 01:22:52PM -0400, Tom Talpey wrote:
> There needs to be some statement of the performance consequences of
> removing this "optimization". I'm going to predict it's significant
> on rotating media, and should not go unmeasured.
I agree that rotational storage will likely see an impact. But
Linux's more recent (now like 14 years ago) FLUSH+FUA rework really
helped improve things -- that was a major undertaking where Christoph,
Jens and others really did a fantastic job of breathing new life into
Linux performance on modern rotational storage.
Related blast from the past: https://lwn.net/Articles/457667/
My point: may not be as grim as we think...
but there is a difference between SATA rotational storage and
"enterprise" rotational storage (e.g. NetApp or EMC fronted by
elaborate caching that is configured to report wbc=0 because they have
battery backed cache)
Mike
ps: I don't have any rotational storage to test, not it!
> The commit message needs to more bluntly state the fact that the
> server has been violating the quoted MUST. See previous paragraph.
>
> Tom.
>
> On 10/22/2025 12:22 PM, Chuck Lever wrote:
> > From: Chuck Lever <chuck.lever@oracle.com>
> >
> > Mike noted that when NFSD responds to an NFS_FILE_SYNC WRITE, it
> > does not also persist file time stamps. To wit, Section 18.32.3
> > of RFC 8881 mandates:
> >
> > > The client specifies with the stable parameter the method of how
> > > the data is to be processed by the server. If stable is
> > > FILE_SYNC4, the server MUST commit the data written plus all file
> > > system metadata to stable storage before returning results. This
> > > corresponds to the NFSv2 protocol semantics. Any other behavior
> > > constitutes a protocol violation. If stable is DATA_SYNC4, then
> > > the server MUST commit all of the data to stable storage and
> > > enough of the metadata to retrieve the data before returning.
> >
> > For many years, NFSD has used a "data sync only" optimization for
> > FILE_SYNC WRITEs, so file time stamps haven't been persisted as the
> > mandate above requires.
> >
> > Reported-by: Mike Snitzer <snitzer@kernel.org>
> > Closes: https://lore.kernel.org/linux-nfs/20251018005431.3403-1-cel@kernel.org/T/#t
> > Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
> > ---
> > fs/nfsd/vfs.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > This would need to be applied to nfsd-testing before the DIRECT
> > WRITE patches. I'm guessing a Cc: stable would be needed as well.
> >
> > diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
> > index f537a7b4ee01..2c5d38f38454 100644
> > --- a/fs/nfsd/vfs.c
> > +++ b/fs/nfsd/vfs.c
> > @@ -1315,7 +1315,8 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp,
> > init_sync_kiocb(&kiocb, file);
> > kiocb.ki_pos = offset;
> > if (stable && !fhp->fh_use_wgather)
> > - kiocb.ki_flags |= IOCB_DSYNC;
> > + kiocb.ki_flags |=
> > + (stable == NFS_FILE_SYNC ? IOCB_SYNC : IOCB_DSYNC);
> > nvecs = xdr_buf_to_bvec(rqstp->rq_bvec, rqstp->rq_maxpages, payload);
> > iov_iter_bvec(&iter, ITER_SOURCE, rqstp->rq_bvec, nvecs, *cnt);
>
next prev parent reply other threads:[~2025-10-22 17:46 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-22 16:22 [RFC PATCH] NFSD: Make FILE_SYNC WRITEs comply with spec Chuck Lever
2025-10-22 17:22 ` Tom Talpey
2025-10-22 17:46 ` Mike Snitzer [this message]
2025-10-22 18:25 ` Tom Talpey
2025-10-22 18:39 ` Mike Snitzer
2025-10-23 6:39 ` Christoph Hellwig
2025-10-22 17:27 ` Mike Snitzer
2025-10-28 22:28 ` Dave Chinner
2025-10-23 6:38 ` Christoph Hellwig
2025-10-23 12:46 ` Chuck Lever
2025-10-23 13:34 ` Christoph Hellwig
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=aPkYedLyruWyCO0o@kernel.org \
--to=snitzer@kernel.org \
--cc=cel@kernel.org \
--cc=chuck.lever@oracle.com \
--cc=dai.ngo@oracle.com \
--cc=jlayton@kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=neil@brown.name \
--cc=okorniev@redhat.com \
--cc=tom@talpey.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.