All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bodo Eggert <7eggert@gmx.de>
To: Theodore Tso <tytso@mit.edu>, Theodore Tso <tytso@mit.edu>,
	Matthew Garrett <mjg59@srcf.ucam.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	David Rees <drees76@gmail.com>, Jesper Krogh <jesper@krogh.cc>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: Linux 2.6.29
Date: Fri, 27 Mar 2009 22:53:26 +0100	[thread overview]
Message-ID: <E1LnJzS-0001vn-Vf@be1.7eggert.dyndns.org> (raw)
In-Reply-To: ckcE8-845-9@gated-at.bofh.it

Theodore Tso <tytso@mit.edu> wrote:
> On Fri, Mar 27, 2009 at 03:47:05AM +0000, Matthew Garrett wrote:

>> Oh, for the love of a whole range of mythological figures. ext3 didn't
>> train application programmers that they could be careless about fsync().
>> It gave them functionality that they wanted, ie the ability to do things
>> like rename a file over another one with the expectation that these
>> operations would actually occur in the same order that they were
>> generated. More to the point, it let them do this *without* having to
>> call fsync(), resulting in a significant improvement in filesystem
>> usability.

> There were plenty of applications that were written for Unix *and*
> Linux systems before ext3 existed, and they worked just fine.  Back
> then, people were drilled into the fact that they needed to use
> fsync(), and fsync() wan't expensive, so there wasn't a big deal in
> terms of usability.  The fact that fsync() was expensive was precisely
> because of ext3's data=ordered problem.  Writing files safely meant
> that you had to check error returns from fsync() *and* close().

> In fact, if you care about making sure that data doesn't get lost due
> to disk errors, you *must* call fsync().

People don't care about data getting lost if hell breaks lose, but they
care if you ensure that killing the data happens, while keeping the data
is delayed.

Or more simple: Old state: good. New state: good. Inbetween state: bad.
And journaling with delayed data is exposing the inbetween state for
a long period.

> Pavel may have complained 
> that fsync() can sometimes drop errors if some other process also has
> the file open and calls fsync() --- but if you don't, and you rely on
> ext3 to magically write the data blocks out as a side effect of the
> commit in data=ordered mode, there's no way to signal the write error
> to the application, and you are *guaranteed * to lose the I/O error
> indication.

Fortunately, IO errors are not common, and errors=remount-ro will
prevent it from being fatal.

> I can tell you quite authoritatively that we didn't implement
> data=ordered to make life easier for application writers, and
> application writers didn't come to ext3 developers asking for this
> convenience.  It may have **accidentally** given them convenience that
> they wanted, but it also made fsync() slow.

data=ordered is a sane way of handling data. Otherwise, the millions
would change their ext3 to data=writeback.

>> I'm utterly and screamingly bored of this "Blame userspace" attitude.
> 
> I'm not blaming userspace.  I'm blaming ourselves, for implementing an
> attractive nuisance, and not realizing that we had implemented an
> attractive nuisance; which years later, is also responsible for these
> latency problems, both with and without fsync() ---- *and* which have
> also traied people into believing that fsync() is always expensive,
> and must be avoided at all costs --- which had not previously been
> true!

I've been waiting ages for a sync() to complete long before reiserfs was
out to make ext2 jealous. Besides that, I don't need the data to be on disk,
I need the update to be mostly-atomic, leaving only small gaps to destroy my
data. Pure chance can (and usually will) give me a better guarantee than what
ext4 did.

I don't know about the logic you put into ext4 to work around the issue, but
I can imagine marking empty-file inodes (and O_APPEND or any i~?) as poisoned
if delayed blocks are appended, and if these poisoned inodes (and depending
operations) don't get played back, it might work acceptably.


  parent reply	other threads:[~2009-03-27 21:53 UTC|newest]

Thread overview: 419+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cj1Ut-1i2-7@gated-at.bofh.it>
     [not found] ` <cj8ji-35a-5@gated-at.bofh.it>
     [not found]   ` <cj8CC-3uO-5@gated-at.bofh.it>
     [not found]     ` <cjaXP-7vB-17@gated-at.bofh.it>
     [not found]       ` <cjbhc-7VP-13@gated-at.bofh.it>
     [not found]         ` <cjbTS-AR-11@gated-at.bofh.it>
     [not found]           ` <cjcdl-10E-31@gated-at.bofh.it>
     [not found]             ` <cjeS0-5nC-33@gated-at.bofh.it>
2009-03-25 15:19               ` Linux 2.6.29 Bodo Eggert
     [not found]     ` <cj9oW-4PO-1@gated-at.bofh.it>
     [not found]       ` <cjkaL-5xg-15@gated-at.bofh.it>
     [not found]         ` <cjGbn-6Xx-35@gated-at.bofh.it>
     [not found]           ` <cjGl4-7ak-61@gated-at.bofh.it>
     [not found]             ` <cjJsv-3Uu-5@gated-at.bofh.it>
     [not found]               ` <cjKHX-5MF-19@gated-at.bofh.it>
     [not found]                 ` <ck7XP-JA-13@gated-at.bofh.it>
     [not found]                   ` <ck8h7-18H-1@gated-at.bofh.it>
     [not found]                     ` <ck8AA-1y0-7@gated-at.bofh.it>
     [not found]                       ` <ck8Kd-20o-7@gated-at.bofh.it>
     [not found]                         ` <ckaVR-5o8-9@gated-at.bofh.it>
     [not found]                           ` <ckbf4-5M8-7@gated-at.bofh.it>
     [not found]                             ` <ckcE8-845-9@gated-at.bofh.it>
2009-03-27 21:53                               ` Bodo Eggert [this message]
2009-03-28  6:51                                 ` Mike Galbraith
2009-03-28 12:12                                 ` Theodore Tso
     [not found]                               ` <ckdgW-uA-1@gated-at.bofh.it>
     [not found]                                 ` <ckdK0-1om-1@gated-at.bofh.it>
     [not found]                                   ` <ckiqk-uZ-13@gated-at.bofh.it>
     [not found]                                     ` <cklHL-5IW-23@gated-at.bofh.it>
     [not found]                                       ` <ckm0Q-6o4-3@gated-at.bofh.it>
     [not found]                                         ` <ckmaG-6AC-5@gated-at.bofh.it>
     [not found]                                           ` <ckmWO-7Ro-5@gated-at.bofh.it>
     [not found]                                             ` <ckn6L-84h-19@gated-at.bofh.it>
     [not found]                                               ` <cknzG-ff-7@gated-at.bofh.it>
     [not found]                                                 ` <cknJk-IB-9@gated-at.bofh.it>
     [not found]                                                   ` <ckoFm-2eg-3@gated-at.bofh.it>
     [not found]                                                     ` <ckoYP-2DC-13@gated-at.bofh.it>
2009-03-28 11:53                                                       ` Bodo Eggert
2009-03-29 14:45                                                         ` Pavel Machek
2009-03-29 15:47                                                           ` Linus Torvalds
2009-03-29 19:15                                                             ` Pavel Machek
2009-03-30 14:22                                                           ` Morten P.D. Stevens
     [not found]                         ` <ck93x-2oJ-3@gated-at.bofh.it>
2009-03-27 23:22                           ` Bodo Eggert
2009-03-23 23:29 Linus Torvalds
2009-03-24  6:19 ` Jesper Krogh
2009-03-24  6:46   ` David Rees
2009-03-24  7:32     ` Jesper Krogh
2009-03-24  8:16       ` Ingo Molnar
2009-03-24 11:10         ` Jesper Krogh
2009-03-24 19:00       ` David Rees
2009-03-25 17:42         ` Jesper Krogh
2009-03-25 18:16           ` David Rees
2009-03-25 18:46             ` Jesper Krogh
2009-03-25 18:30         ` Theodore Tso
2009-03-25 18:40           ` Linus Torvalds
2009-03-25 22:05             ` Theodore Tso
2009-03-25 23:23               ` Linus Torvalds
2009-03-25 23:46                 ` Bron Gondwana
2009-03-26  0:32                   ` Ric Wheeler
2009-03-27  0:11                 ` Andrew Morton
2009-03-27  0:27                   ` Linus Torvalds
2009-03-27  0:47                     ` Andrew Morton
2009-03-27  1:03                       ` Linus Torvalds
2009-03-27  1:25                         ` Andrew Morton
2009-03-27  2:21                           ` David Rees
2009-03-27  3:03                             ` Matthew Garrett
2009-03-27  3:36                             ` Dave Jones
2009-03-27  3:01                           ` Matthew Garrett
2009-03-27  3:38                           ` Linus Torvalds
2009-03-27  3:59                             ` Linus Torvalds
2009-03-28 23:52                               ` david
2009-03-28  5:06                           ` Ingo Molnar
2009-04-01 21:03                           ` Lennart Sorensen
2009-04-01 21:36                             ` Andrew Morton
2009-04-01 22:57                               ` Lennart Sorensen
2009-04-03 14:46                                 ` Mark Lord
2009-04-03 15:16                                   ` Lennart Sorensen
2009-04-03 15:42                                     ` Mark Lord
2009-04-03 18:59                                     ` Jeff Garzik
2009-04-04  8:18                                       ` Andrew Morton
2009-04-04 12:40                                         ` Mark Lord
2009-04-05  1:57                                         ` David Newall
2009-04-05  3:46                                           ` Mark Lord
2009-04-02  1:00                               ` Ingo Molnar
2009-04-03  4:06                                 ` Lennart Sorensen
2009-04-03  4:13                                   ` Linus Torvalds
2009-04-03  7:25                                     ` Jens Axboe
2009-04-03  8:15                                       ` Ingo Molnar
2009-04-06 21:46                                         ` Bill Davidsen
2009-04-03 14:21                                       ` Lennart Sorensen
2009-04-03 15:05                                         ` Mark Lord
2009-04-03 15:14                                           ` Lennart Sorensen
2009-04-03 19:57                                           ` Jeff Garzik
2009-04-03 21:28                                             ` Janne Grunau
2009-04-03 21:57                                               ` Jeff Garzik
2009-04-03 22:32                                                 ` Janne Grunau
2009-04-03 22:57                                                   ` David Rees
2009-04-03 23:29                                                   ` Jeff Garzik
2009-04-03 23:52                                                     ` Linus Torvalds
2009-04-03 22:53                                                 ` David Rees
2009-04-03 23:30                                                   ` Jeff Garzik
2009-04-04 16:29                                                     ` Janne Grunau
2009-04-04 23:02                                                       ` Jeff Garzik
2009-04-05 14:20                                                         ` Janne Grunau
2009-04-06 14:06                                                         ` Lennart Sorensen
2009-04-03 22:28                                   ` Jeff Moyer
2009-04-06 14:15                                     ` Lennart Sorensen
2009-04-06 21:27                                       ` Mark Lord
2009-04-06 21:56                                         ` Lennart Sorensen
2009-04-02 11:05                             ` Janne Grunau
2009-04-02 16:09                               ` Andrew Morton
2009-04-02 16:33                                 ` David Rees
2009-04-02 16:46                                   ` Linus Torvalds
2009-04-02 16:51                                   ` Andrew Morton
2009-04-02 22:13                                     ` Jeff Garzik
2009-04-02 21:56                                   ` Jeff Garzik
2009-04-02 16:29                               ` David Rees
2009-04-02 16:42                                 ` Andrew Morton
2009-04-02 16:57                                   ` Linus Torvalds
2009-04-02 17:04                                     ` Linus Torvalds
2009-04-02 22:09                                       ` Jeff Garzik
2009-04-02 22:42                                         ` Linus Torvalds
2009-04-02 22:51                                           ` Andrew Morton
2009-04-02 23:00                                             ` Linus Torvalds
2009-04-03  2:01                                           ` Jeff Garzik
2009-04-03  2:16                                             ` Linus Torvalds
2009-04-03  3:05                                               ` Jeff Garzik
2009-04-03  3:34                                                 ` Linus Torvalds
2009-04-03 11:32                                                   ` Chris Mason
2009-04-03 15:07                                                     ` Linus Torvalds
2009-04-03 15:40                                                       ` Chris Mason
2009-04-03 20:05                                                       ` Jeff Garzik
2009-04-03 20:14                                                         ` Linus Torvalds
2009-04-03 21:48                                                           ` Jeff Garzik
2009-04-03 22:06                                                             ` Linus Torvalds
2009-04-03 23:48                                                               ` Jeff Garzik
2009-04-04 12:46                                                                 ` Mark Lord
2009-04-04 12:52                                                                   ` Huang Yuntao
2009-04-03 23:35                                                           ` Dave Jones
2009-04-04 12:44                                                         ` Mark Lord
2009-04-04 21:10                                                           ` Jeff Garzik
2009-04-03  5:05                                               ` Nick Piggin
2009-04-03  8:31                                               ` Jeff Garzik
2009-04-03  8:35                                                 ` Jeff Garzik
2009-04-03  2:38                                             ` Trenton D. Adams
2009-04-03  2:54                                               ` Jeff Garzik
2009-04-03 15:14                                       ` Mark Lord
2009-04-03 15:18                                         ` Lennart Sorensen
2009-04-03 15:46                                           ` Mark Lord
2009-04-03 15:28                                         ` Linus Torvalds
2009-04-02 18:52                                   ` David Rees
2009-04-02 21:42                                 ` Theodore Tso
2009-04-02 21:50                               ` Lennart Sorensen
2009-04-03 15:07                               ` Mark Lord
2009-04-02 12:17                             ` Theodore Tso
2009-04-02 21:54                               ` Lennart Sorensen
2009-04-02 23:27                                 ` Theodore Tso
2009-04-03  0:32                                   ` Lennart Sorensen
2009-03-27  3:23                         ` Theodore Tso
2009-03-27  3:47                           ` Matthew Garrett
2009-03-27  5:13                             ` Theodore Tso
2009-03-27  5:57                               ` Matthew Garrett
2009-03-27  6:21                                 ` Matthew Garrett
2009-03-27 11:24                                   ` Theodore Tso
2009-03-27 14:51                                     ` Matthew Garrett
2009-03-27 15:08                                       ` Alan Cox
2009-03-27 15:22                                         ` Matthew Garrett
2009-03-27 16:15                                           ` Alan Cox
2009-03-27 16:28                                             ` Matthew Garrett
2009-03-27 16:51                                               ` Alan Cox
2009-03-27 17:02                                                 ` Matthew Garrett
2009-03-27 17:19                                                   ` Alan Cox
2009-03-27 18:05                                                     ` Linus Torvalds
2009-03-27 18:35                                                       ` Alan Cox
2009-03-27 19:03                                                       ` Theodore Tso
2009-03-27 19:14                                                         ` Alan Cox
2009-03-27 19:32                                                           ` Theodore Tso
2009-03-27 20:11                                                             ` Andreas T.Auer
2009-03-27 22:01                                                               ` Linus Torvalds
2009-03-31  9:58                                                             ` Neil Brown
2009-03-27 19:19                                                         ` Gene Heskett
2009-03-27 19:48                                                           ` Theodore Tso
2009-03-27 20:02                                                             ` Aaron Cohen
     [not found]                                                             ` <727e50150903271301l36cff340l33e813bf6f77b4b@mail.gmail.com>
2009-03-27 20:04                                                               ` Theodore Tso
2009-03-27 22:37                                                             ` Gene Heskett
2009-03-27 22:55                                                               ` Theodore Tso
2009-03-28  0:42                                                                 ` Gene Heskett
2009-03-27 18:36                                                     ` Hua Zhong
2009-03-27 17:57                                                   ` Linus Torvalds
2009-03-27 18:22                                                     ` Linus Torvalds
2009-03-27 18:32                                                     ` Alan Cox
2009-03-27 18:40                                                       ` Linus Torvalds
2009-03-27 19:00                                                         ` Alan Cox
2009-03-29  9:15                                                           ` Xavier Bestel
2009-03-29 20:16                                                             ` Alan Cox
2009-03-29 21:07                                                               ` Linus Torvalds
2009-03-30 19:37                                                                 ` Jeremy Fitzhardinge
2009-03-27 20:27                                                         ` Felipe Contreras
2009-03-27 19:43                                                     ` Jeff Garzik
2009-03-27 20:01                                                       ` Theodore Tso
2009-03-27 22:20                                                         ` Jeff Garzik
2009-03-27 21:46                                                       ` Linus Torvalds
2009-03-27 22:06                                                         ` Jeff Garzik
2009-03-27 22:19                                                           ` Linus Torvalds
2009-03-27 22:25                                                             ` Linus Torvalds
2009-03-28  1:19                                                               ` Jeff Garzik
2009-03-28  1:30                                                                 ` David Miller
2009-03-28  2:19                                                                 ` Mark Lord
2009-03-28  2:49                                                                   ` Jeff Garzik
2009-03-28 13:29                                                                     ` Stefan Richter
2009-03-28 14:17                                                                       ` Jeff Garzik
2009-03-28 14:35                                                                         ` Stefan Richter
2009-03-28 15:17                                                                           ` Mark Lord
2009-03-28 16:08                                                                             ` Stefan Richter
2009-03-28 16:32                                                                               ` Linus Torvalds
2009-03-28 17:22                                                                                 ` David Hagood
2009-03-29  1:18                                                                             ` Jeff Garzik
2009-03-31 18:45                                                                               ` Jörn Engel
2009-03-29 23:14                                                                             ` Dave Chinner
2009-03-30  0:39                                                                               ` Theodore Tso
2009-03-30  1:29                                                                                 ` Trenton Adams
2009-03-30  3:28                                                                                   ` Theodore Tso
2009-03-30  3:55                                                                                     ` Trenton D. Adams
2009-03-30 13:45                                                                                       ` Theodore Tso
2009-03-30  6:31                                                                                 ` Dave Chinner
2009-03-30 13:55                                                                                   ` Theodore Tso
2009-03-30  7:13                                                                                 ` Andreas T.Auer
2009-03-30  9:05                                                                                   ` Alan Cox
2009-03-30 10:49                                                                                     ` Andreas T.Auer
2009-03-30 11:12                                                                                       ` Alan Cox
2009-03-30 11:17                                                                                       ` Ric Wheeler
2009-03-30 13:48                                                                                         ` Mark Lord
2009-03-30 14:00                                                                                           ` Ric Wheeler
2009-03-30 14:44                                                                                             ` Mark Lord
2009-03-30 14:58                                                                                               ` Ric Wheeler
2009-03-30 15:21                                                                                                 ` Mark Lord
2009-03-30 15:27                                                                                                   ` Ric Wheeler
2009-03-30 16:13                                                                                                     ` Linus Torvalds
2009-03-30 16:30                                                                                                       ` Mark Lord
2009-03-30 16:58                                                                                                         ` Linus Torvalds
2009-03-30 17:29                                                                                                           ` Mark Lord
2009-03-30 17:57                                                                                                           ` Chris Mason
2009-03-30 18:39                                                                                                             ` Mark Lord
2009-03-30 18:52                                                                                                               ` Chris Mason
2009-03-30 20:19                                                                                                                 ` Mark Lord
2009-03-30 18:54                                                                                                             ` Pasi Kärkkäinen
2009-03-30 15:00                                                                                               ` Jeff Garzik
2009-03-30 15:34                                                                                         ` Linus Torvalds
2009-03-30 16:11                                                                                           ` Ric Wheeler
2009-03-30 16:34                                                                                             ` Linus Torvalds
2009-03-30 17:11                                                                                               ` Ric Wheeler
2009-03-30 17:39                                                                                                 ` Mark Lord
2009-03-30 17:51                                                                                                 ` Linus Torvalds
2009-03-30 18:15                                                                                                   ` Ric Wheeler
2009-03-30 19:08                                                                                                   ` Eric Sandeen
2009-03-30 19:22                                                                                                   ` Rik van Riel
2009-03-30 19:41                                                                                                     ` Jeff Garzik
2009-03-30 20:21                                                                                                       ` Michael Tokarev
2009-03-30 20:26                                                                                                         ` Mark Lord
2009-03-30 20:29                                                                                                           ` Mark Lord
2009-03-30 20:35                                                                                                           ` Jeff Garzik
2009-03-30 20:40                                                                                                             ` Mark Lord
2009-03-30 20:34                                                                                                         ` Jeff Garzik
2009-03-30 20:05                                                                                                     ` Linus Torvalds
2009-03-31  9:27                                                                                                     ` Neil Brown
2009-03-31 21:13                                                                                                     ` Alan Cox
2009-03-31 21:10                                                                                               ` Alan Cox
2009-03-31 21:55                                                                                                 ` Linus Torvalds
2009-03-30 19:02                                                                                   ` Bill Davidsen
2009-04-01  1:19                                                                                     ` david
2009-04-01 16:24                                                                                       ` Bill Davidsen
2009-04-01 20:15                                                                                         ` david
2009-04-01 21:33                                                                                           ` Andreas T.Auer
2009-04-01 22:29                                                                                             ` david
2009-04-02  2:30                                                                                               ` Bron Gondwana
2009-04-02  4:55                                                                                                 ` david
2009-04-02  5:29                                                                                                   ` Bron Gondwana
2009-04-02  9:58                                                                                                   ` Andreas T.Auer
2009-04-02 12:30                                                                                               ` Bill Davidsen
2009-04-01 22:00                                                                                           ` Harald Arnesen
2009-04-01 22:09                                                                                             ` Alejandro Riveira Fernández
2009-04-01 22:28                                                                                             ` david
2009-03-30  3:01                                                                               ` Mark Lord
2009-03-30  6:41                                                                                 ` Andreas T.Auer
2009-03-30 12:55                                                                               ` Chris Mason
2009-03-30 17:42                                                                                 ` Theodore Tso
2009-03-31 23:55                                                                                 ` Dave Chinner
2009-04-01 12:53                                                                                   ` Chris Mason
2009-04-01 15:41                                                                                     ` Andreas T.Auer
2009-04-01 16:02                                                                                       ` Chris Mason
2009-04-01 18:37                                                                                         ` Andreas T.Auer
2009-04-01 21:50                                                                                         ` Theodore Tso
2009-04-01 23:44                                                                                           ` Matthew Garrett
2009-03-28 16:25                                                                           ` Alex Goebel
2009-03-28 21:12                                                                             ` Hua Zhong
2009-03-29  8:22                                                                               ` Stefan Richter
2009-03-29  0:33                                                                 ` david
2009-03-29  1:24                                                                   ` Jeff Garzik
2009-03-29  3:43                                                                     ` Theodore Tso
2009-03-29  4:53                                                                       ` Jeff Garzik
2009-03-31 15:01                                                                 ` Thierry Vignaud
2009-03-28  0:18                                                             ` Jeff Garzik
2009-03-28  1:45                                                               ` Linus Torvalds
2009-03-28  2:53                                                                 ` Jeff Garzik
2009-03-28  2:56                                                                   ` Zid Null
2009-03-28  3:55                                                                   ` Gene Heskett
2009-03-28 11:29                                                                     ` Alejandro Riveira Fernández
2009-03-28  2:16                                                             ` Mark Lord
2009-03-28  2:38                                                               ` Linus Torvalds
2009-03-28 11:57                                                                 ` Andreas T.Auer
2009-03-27 15:20                                       ` Giacomo A. Catenazzi
2009-03-27 21:11                                     ` Jeremy Fitzhardinge
2009-03-28  7:45                                       ` Bojan Smojver
2009-03-28  8:43                                         ` Bojan Smojver
2009-03-28 21:55                                           ` Bojan Smojver
2009-03-31 21:51                                             ` Jeremy Fitzhardinge
2009-03-31 22:30                                               ` Bojan Smojver
2009-04-01  5:26                                                 ` Bojan Smojver
2009-04-01  6:35                                                   ` Jeremy Fitzhardinge
2009-04-03 12:39                               ` Pavel Machek
2009-03-27  0:51                     ` Linus Torvalds
2009-03-27  1:03                       ` Andrew Morton
2009-03-27  9:58                   ` Alan Cox
2009-03-26  2:50               ` Neil Brown
2009-03-26  3:13                 ` Theodore Tso
2009-03-24  9:15     ` Alan Cox
2009-03-24  9:32       ` Ingo Molnar
2009-03-24 10:10         ` Alan Cox
2009-03-24 10:31           ` Ingo Molnar
2009-03-24 11:12             ` Andrew Morton
2009-03-24 12:23               ` Alan Cox
2009-03-24 13:37               ` Theodore Tso
2009-03-25 12:37               ` Jan Kara
2009-03-25 15:00                 ` Theodore Tso
2009-03-25 17:29                   ` Linus Torvalds
2009-03-25 17:57                     ` Alan Cox
2009-03-25 18:09                     ` David Rees
2009-03-25 18:21                       ` Linus Torvalds
2009-03-25 18:26                         ` Linus Torvalds
2009-03-25 18:48                           ` Ric Wheeler
2009-03-25 18:49                           ` Alan Cox
2009-03-25 18:55                             ` Ric Wheeler
2009-03-25 18:58                     ` Theodore Tso
2009-03-25 19:48                       ` Christoph Hellwig
2009-03-25 21:50                         ` Theodore Tso
2009-03-26  2:10                           ` Matthew Garrett
2009-03-26  2:36                             ` Jeff Garzik
2009-03-26  2:42                               ` Matthew Garrett
     [not found]                             ` <f73f7ab80903251944s581166bbk31c26db50750814a@mail.gmail.com>
2009-03-26  2:46                               ` Kyle Moffett
2009-03-26  2:51                                 ` Jeff Garzik
2009-03-26  3:03                                   ` Kyle Moffett
2009-03-26  3:40                                     ` Linus Torvalds
2009-03-26  3:57                                       ` David Miller
2009-03-26  4:58                                       ` Kyle Moffett
2009-03-26  6:24                                         ` Jeff Garzik
2009-03-26 12:49                                           ` Kyle Moffett
2009-03-26  2:47                               ` Matthew Garrett
2009-03-26  2:54                                 ` Kyle Moffett
2009-03-25 20:45                       ` Linus Torvalds
2009-03-25 21:51                         ` Theodore Tso
2009-03-25 23:21                           ` Linus Torvalds
2009-03-25 23:50                             ` Jan Kara
2009-03-26  0:04                               ` Linus Torvalds
2009-03-25 23:57                             ` Linus Torvalds
2009-03-26  0:22                               ` Jan Kara
2009-03-26  1:34                                 ` Linus Torvalds
2009-03-26  2:59                                   ` Theodore Tso
2009-03-26 16:24                                   ` Jan Kara
2009-03-24 13:20             ` Theodore Tso
2009-03-24 13:30               ` Ingo Molnar
2009-03-24 13:51                 ` Theodore Tso
2009-03-24 16:34                   ` Jesper Krogh
2009-03-24 17:32                     ` Linus Torvalds
2009-03-24 18:20                   ` Mark Lord
2009-03-24 18:41                     ` Eric Sandeen
2009-03-24 13:52               ` Alan Cox
2009-03-24 14:28                 ` Theodore Tso
2009-03-24 15:18                   ` Alan Cox
2009-03-24 17:55                 ` Jan Kara
2009-03-24 17:55               ` Linus Torvalds
2009-03-24 18:41                 ` Kyle Moffett
2009-03-24 19:17                   ` Linus Torvalds
2009-03-24 18:45                 ` Theodore Tso
2009-03-24 19:21                   ` Linus Torvalds
2009-03-24 19:40                     ` Ric Wheeler
2009-03-24 19:55                     ` Jeff Garzik
2009-03-25  9:34                       ` Benny Halevy
2009-03-25  9:39                       ` Jens Axboe
2009-03-25 19:32                         ` Jeff Garzik
2009-03-25 19:43                           ` Christoph Hellwig
2009-03-25 19:43                           ` Jens Axboe
2009-03-25 19:49                             ` Ric Wheeler
2009-03-25 19:57                               ` Jens Axboe
2009-03-25 20:41                                 ` Hugh Dickins
2009-03-26  8:57                                   ` Jens Axboe
2009-03-26 14:47                                     ` Hugh Dickins
2009-03-26 15:46                                       ` Jens Axboe
2009-03-26 18:21                                         ` Hugh Dickins
2009-03-26 18:32                                           ` Jens Axboe
2009-03-26 19:00                                             ` Hugh Dickins
2009-03-26 19:03                                               ` Jens Axboe
2009-03-25 20:16                               ` Jeff Garzik
2009-03-25 20:25                                 ` Ric Wheeler
2009-03-25 21:22                                   ` James Bottomley
2009-03-26  8:59                                     ` Jens Axboe
2009-03-25 21:27                                 ` Benny Halevy
2009-03-25 20:25                             ` Jeff Garzik
2009-03-25 20:40                               ` Linus Torvalds
2009-03-25 20:57                                 ` Ric Wheeler
2009-03-25 23:02                                   ` Linus Torvalds
2009-03-26  0:28                                     ` Ric Wheeler
2009-03-26  1:36                                       ` Linus Torvalds
2009-03-25 21:33                                 ` Jeff Garzik
2009-03-27  7:57                                 ` Jens Axboe
2009-03-27 14:13                                   ` Theodore Tso
2009-03-27 14:35                                     ` Christoph Hellwig
2009-03-27 15:03                                       ` Ric Wheeler
2009-03-27 20:38                                       ` Jeff Garzik
2009-03-28  0:14                                         ` Alan Cox
2009-03-29  8:25                                         ` Christoph Hellwig
2009-03-27 19:14                                   ` Chris Mason
2009-03-27  7:46                               ` Jens Axboe
2009-03-31 20:49                             ` Jeff Garzik
2009-03-31 22:02                               ` Ric Wheeler
2009-03-31 22:22                                 ` Jeff Garzik
2009-04-01 18:34                                   ` Mark Lord
2009-03-24 20:24               ` David Rees
2009-03-25  7:30                 ` David Rees
2009-03-24 23:03               ` Jesse Barnes
2009-03-25  0:05                 ` Arjan van de Ven
2009-03-25 17:59                   ` David Rees
2009-03-25 18:40                   ` Stephen Clark
2009-03-26 23:53                     ` Mark Lord
2009-03-25  2:09                 ` Theodore Tso
2009-03-25  3:57                   ` Jesse Barnes
2009-03-27 11:27                 ` Martin Steigerwald
2009-03-24 12:27           ` Andi Kleen
2009-04-02 14:00   ` Mathieu Desnoyers
2009-03-27 13:35 ` Hans-Peter Jansen
2009-03-27 14:53   ` Geert Uytterhoeven
2009-03-27 15:46     ` Mike Galbraith
2009-03-27 16:02       ` Linus Torvalds
2009-03-28  7:50         ` Mike Galbraith
2009-03-30 22:00         ` Hans-Peter Jansen
2009-03-30 22:07           ` Arjan van de Ven
2009-03-30 10:18             ` Pavel Machek
2009-03-31 13:33             ` Rafael J. Wysocki
2009-03-31 15:30             ` Hans-Peter Jansen
2009-03-31 19:37             ` Jeff Garzik
2009-03-31 19:47               ` Arjan van de Ven
2009-04-02 19:01           ` Andreas T.Auer
2009-03-27 16:49   ` Frans Pop

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=E1LnJzS-0001vn-Vf@be1.7eggert.dyndns.org \
    --to=7eggert@gmx.de \
    --cc=akpm@linux-foundation.org \
    --cc=drees76@gmail.com \
    --cc=jesper@krogh.cc \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mjg59@srcf.ucam.org \
    --cc=torvalds@linux-foundation.org \
    --cc=tytso@mit.edu \
    /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.