public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: Christoph Hellwig <hch@infradead.org>
Cc: linux-nfs@vger.kernel.org, xfs@oss.sgi.com,
	Marc Eshel <eshel@us.ibm.com>,
	Anna Schumaker <Anna.Schumaker@netapp.com>,
	linux-nfs-owner@vger.kernel.org
Subject: Re: [PATCH v3 3/3] NFSD: Add support for encoding multiple segments
Date: Fri, 20 Mar 2015 14:26:21 -0400	[thread overview]
Message-ID: <20150320182621.GH2036@fieldses.org> (raw)
In-Reply-To: <20150320162303.GA18786@infradead.org>

On Fri, Mar 20, 2015 at 09:23:03AM -0700, Christoph Hellwig wrote:
> On Fri, Mar 20, 2015 at 11:17:18AM -0400, J. Bruce Fields wrote:
> > Maybe this is a question for xfs developers.
> > 
> > So, we have a new READ_PLUS call that's basically just a version of READ
> > optimized for sparse files:
> > 
> > 	http://tools.ietf.org/html/draft-ietf-nfsv4-minorversion2-33#section-15.10
> > 
> > It allows an NFS server to return either file data (like a normal READ
> > call) or, at the server's discretion, records saying "this range of the
> > data is all zeroes".
> > 
> > Anna tried implementing READ_PLUS for knfsd using
> > vfs_llseek(.,.,SEEK_HOLE) followed by an ordinary read if that
> > determines we're not at a hole.
> > 
> > (Very) preliminary results suggest that's slower than a plain READ for
> > an xfs file with no holes.  (And *much* slower in the ext4 case for some
> > reason.)
> 
> It should be a fairly cheap operastion, and does extent tree operations
> that are pretty similar to an (uncached) read.  Do you have profiles?
> 
> > Is that expected, and should we be doing this some other way instead?
> 
> Are the read cached or uncached?

I don't know, and don't have profiles.  I'll either try to reproduce or
wait till Anna's back from vacation.

> If they are from pagecache just copying the zeroes is pretty much
> unbeatable compared to extent tree lookups, so we'd need a new page
> flag (difficult..) to see that a page is a hole (and then it would
> only work for the whole page), but for uncached reads an optimization
> would be to tell a read that it's an NFS READ_PLUS so that it could
> just read until it reach a hole, and then we'd need some way to
> communicate the hole size (or just fall back to SEEK_HOLE for that
> case).

Ugh, OK.  We'll do some more tests before coming back to ask about
that....

--b.

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

  reply	other threads:[~2015-03-20 18:26 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20150317213654.GE29843@fieldses.org>
     [not found] ` <5509C0FD.70309@Netapp.com>
     [not found]   ` <20150318185545.GF8818@fieldses.org>
     [not found]     ` <5509E27C.3080004@Netapp.com>
     [not found]       ` <20150318205554.GA10716@fieldses.org>
     [not found]         ` <5509E824.6070006@Netapp.com>
     [not found]           ` <20150318211144.GB10716@fieldses.org>
     [not found]             ` <OFB111A6D8.016B8BD5-ON88257E0D.001D174D-88257E0D.005268D6@us.ibm.com>
     [not found]               ` <20150319153627.GA20852@fieldses.org>
     [not found]                 ` <OF38D4D18B.19055EC2-ON88257E0D.0059BA03-88257E0D.005A781F@us.ibm.com>
2015-03-20 15:17                   ` [PATCH v3 3/3] NFSD: Add support for encoding multiple segments J. Bruce Fields
2015-03-20 16:23                     ` Christoph Hellwig
2015-03-20 18:26                       ` J. Bruce Fields [this message]
2015-03-24 12:43                         ` Anna Schumaker
2015-03-24 17:49                           ` Christoph Hellwig
2015-03-25 17:15                             ` Anna Schumaker
2015-03-26 15:21                             ` Anna Schumaker
2015-03-26 15:32                               ` Trond Myklebust
2015-03-26 15:36                                 ` Anna Schumaker
2015-03-26 15:38                                 ` J. Bruce Fields
2015-03-26 15:47                                   ` Anna Schumaker
2015-03-26 16:06                                     ` Trond Myklebust
2015-03-26 16:11                                       ` Anna Schumaker
2015-03-26 16:13                                         ` Trond Myklebust
2015-03-26 16:14                                           ` Anna Schumaker
2015-03-27 19:04                                           ` Anna Schumaker
2015-03-27 20:22                                             ` Trond Myklebust
2015-03-27 20:46                                               ` Anna Schumaker
2015-03-27 20:54                                                 ` J. Bruce Fields
2015-03-27 20:55                                                   ` Anna Schumaker
2015-03-27 21:08                                                     ` J. Bruce Fields
2015-04-15 19:32                                                       ` Anna Schumaker
2015-04-15 19:56                                                         ` J. Bruce Fields
2015-04-15 20:00                                                           ` J. Bruce Fields
2015-04-15 22:50                                                             ` Dave Chinner
2015-04-17 22:07                                                               ` J. Bruce Fields
2015-04-15 22:57                                                         ` Dave Chinner
2015-03-26 16:11                                     ` J. Bruce Fields
2015-03-26 16:18                                       ` Anna Schumaker
2015-03-30 14:06                                 ` 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=20150320182621.GH2036@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=Anna.Schumaker@netapp.com \
    --cc=eshel@us.ibm.com \
    --cc=hch@infradead.org \
    --cc=linux-nfs-owner@vger.kernel.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=xfs@oss.sgi.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox