linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC] fs io with struct page instead of iovecs
@ 2007-11-07  1:43 Zach Brown
  2007-11-07  1:43 ` [PATCH 1/4] struct rwmem: an abstraction of the memory argument to read/write Zach Brown
  2007-11-07 16:50 ` [RFC] fs io with struct page instead of iovecs Badari Pulavarty
  0 siblings, 2 replies; 8+ messages in thread
From: Zach Brown @ 2007-11-07  1:43 UTC (permalink / raw)
  To: linux-fsdevel; +Cc: Christoph Hellwig, David Chinner

At the FS meeting at LCE there was some talk of doing O_DIRECT writes from the
kernel with pages instead of with iovecs.  This patch series explores one
direction we could head in to achieve this.

We obviously can't just translate user iovecs (which might represent more
memory than the machine has) to pinned pages and pass page struct pointers all
the way down the stack.

And we don't want to duplicate a lot of the generic FS machinery down a
duplicate path which works with pages instead of iovecs.

So this patch series heads in the direction of abstracting out the memory
argument to the read and write calls.  It's still based on segments, but we
hide that it's either iovecs or arrays of page pointers from the callers in the
rw stack.

I didn't go too nuts with the syntactic sugar.  This is just intended to show
the basic mechanics.  We can obviously pretty it up if we think this is a sane
thing to be doing.

The series builds but has never been run.

What do people (that's you, Christoph) think?  I'm flexible.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2007-11-07 20:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-07  1:43 [RFC] fs io with struct page instead of iovecs Zach Brown
2007-11-07  1:43 ` [PATCH 1/4] struct rwmem: an abstraction of the memory argument to read/write Zach Brown
2007-11-07  1:43   ` [PATCH 2/4] dio: use rwmem to work with r/w memory arguments Zach Brown
2007-11-07  1:43     ` [PATCH 3/4] add rwmem type backed by pages Zach Brown
2007-11-07  1:43       ` [PATCH 4/4] add dio interface for page/offset/len tuples Zach Brown
2007-11-07 16:50 ` [RFC] fs io with struct page instead of iovecs Badari Pulavarty
2007-11-07 17:02   ` Zach Brown
2007-11-07 20:44     ` David Chinner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).