From: Zach Brown <zab-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: "Darrick J. Wong" <darrick.wong-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
Cc: Michael Kerrisk
<mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Linux API <linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
Martin Petersen
<martin.petersen-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>,
Jeff Moyer <jmoyer-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Subject: Re: Getting ready for IO extensions, v3
Date: Mon, 22 Sep 2014 14:19:24 -0700 [thread overview]
Message-ID: <20140922211924.GG920@lenny.home.zabbo.net> (raw)
In-Reply-To: <20140920004634.GA18529-PTl6brltDGh4DFYR7WNSRA@public.gmane.org>
On Fri, Sep 19, 2014 at 05:46:34PM -0700, Darrick J. Wong wrote:
> Hi everyone,
>
> I've been working (albeit slowly) on the userspace IO extension interface that
> I talked about last April[1]. The mechanism of attaching various attributes
> (which so far have been mandatory ones) to IO requests has been messy, since it
> requires me to design an interface for both the extensions I have in mind as
> well as a generic way to pass extensions into the kernel from userland.
>
> Is this the appropriate forum to talk about API design in Linux? It seems that
> way to me based on the list archives, but then I'm new at this, and would like
> to discuss the design before sending full patches (again).
>
> So far I've defined this structure:
>
> /* IO extension flags */
> #define IO_EXT_PI (1) /* protection info (checksums, etc) */
> #define IO_EXT_REPLICA (0x2) /* replica */
> #define IO_EXT_ALL (IO_EXT_PI | IO_EXT_REPLICA)
Do we have more examples? It's hard to make a strong case for the need
for variadic io syscalls with only a handful of optional arguments.
Completion timestamps? priorities? cgroup annotation? (Haha, how
about a flag for a "trim" IO instead of having to do a stupid sync
ioctl). I suppose the leading question is: what can the bio interface
do that userspace can't?
> The glaring downsides of this approach of course is that we waste memory on
> fields that might not be turned on, we have to find a sane way to handle the
> ie_has flags, and fields cannot be removed from the structure. I don't know of
> a good way to design around those problems without greatly increasing the
> complexity of the data structure (a generic dictionary would work but ye gods
> that's horrifying), so I was wondering if any of you could suggest something
> better?
Maybe it'd just be easier to punt and re-use one of the N type/payload
interfaces. sendmsg() and netlink are the big ones, right? I think the
important thing is to translate them to internal kernel interfaces as
high up as possible so that the optional arg parsing is not pushed down
the stack.
- z
prev parent reply other threads:[~2014-09-22 21:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-20 0:46 Getting ready for IO extensions, v3 Darrick J. Wong
[not found] ` <20140920004634.GA18529-PTl6brltDGh4DFYR7WNSRA@public.gmane.org>
2014-09-22 21:19 ` Zach Brown [this message]
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=20140922211924.GG920@lenny.home.zabbo.net \
--to=zab-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=darrick.wong-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
--cc=jmoyer-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=martin.petersen-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
--cc=mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
/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