public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-19  2:00 Val Henson
  0 siblings, 0 replies; 66+ messages in thread
From: Val Henson @ 2002-07-19  2:00 UTC (permalink / raw)
  To: Dave Jones; +Cc: linux-kernel

On Thu, 18 Jul 2002, Dave Jones wrote:

> > > o Add support for NFS v4                          (NFS v4 team)
> >      This really shouldn't wait for 2.8!
>
> Last I saw of this patch it was still against something like 2.4.1,

Perhaps we're thinking of different projects, but the current patches
from CITI are against 2.4.18:

http://www.citi.umich.edu/projects/nfsv4/

Whether they've ported to 2.5.x lately is another question.

Thanks to Cynthia Wong (an NFSv4 hacker) for pointing this out to me.

-VAL

^ permalink raw reply	[flat|nested] 66+ messages in thread
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-26 16:12 Ben Rafanello
  2002-07-29  9:00 ` Joe Thornber
  0 siblings, 1 reply; 66+ messages in thread
From: Ben Rafanello @ 2002-07-26 16:12 UTC (permalink / raw)
  To: Joe Thornber; +Cc: linux-kernel


On Fri, Jul 26, 2002 at 3:16AM Joe Thornber wrote:
>On Thu, Jul 25, 2002 at 12:36:45PM -0500, Ben Rafanello wrote:
>> This will work well for
>> cases where the metadata for the volume/volume group does not have to be
>> updated at runtime.  However, it appears that device mapper needs a
>> kernel module to handle those cases where the volume metadata must
>> be updated during runtime (cases such as RAID 5, Mirroring -
>> particularly the fancier forms with features like smart resync
>> and hot spot mirroring, bad block relocation, etc.).
>
>If you need to change the mapping all you have to do is suspend the
>device, load a new map, and then unsuspend the device.  This can be
>done from within the kernel, or from userland via the ioctl interface.
>
>There is a facility enabling targets to notify userland processes of
>events.  eg, a mirror has completed its initial sync, a bad block has
>occured, etc.
>

For cases where the metadata does not have to be changed frequently,
this may be acceptable.  Bad block relocation is not performance
critical - it is (hopefully) a rare event.  So having the BBR
metadata updated from userspace is probably acceptable.  However,
lets look at mirroring.  In particular, mirroring with smart
resync.  What is happening here is that a mirror is removed from
a mirror set with the expressed (or implied) intention to return
it to the mirror set at some point in the future.  This is typically
done to use the removed mirror as a source for a backup while the
rest of the mirror set continues to accept updates.  While the
removed mirror is out of the mirror set, the volume manager
tracks which blocks have changed in the mirror set so that when the
removed mirror is returned to the mirror set, only the blocks that
have changed need to be sync'ed.  This is typically done using a
bitmap in the metadata with one bit per block in the mirror.  Much
like snapshots and their cow tables, the changed blocks bitmap must
be updated and written to disk before a block is modified.  This
can't be done from userspace for many of the same reasons that
snapshot metadata updates are not done from userspace.  In general,
when you have metadata that must be updated frequently, or when
I/O to a device must be suspended until a metadata update is completed,
having the metadata updated from userspace is .... troublesome at best.
Of course, I haven't gone into the striping with parity case yet
either, which would be another example of the metadata update
problem just discussed.

On the facility used to notify userland processes of events, how
are the userland programs notified?  Does bad block relocation
have to have a daemon associated with it so that it can receive
notification of bbr events, or does the notification facility
launch a bbr provided program to handle this?  Or does the
notification facility accept plug-in modules to handle events?
Or is some other mechanism used (I haven't thought to much about
this yet so what follows are just some random ideas that popped
into my head).  If every volume management function needs its
own daemon to handle these notifications, that could get messy.
If the handler launches a program, then you have obvious performance
implications as well as deadlock issues (I/O is suspended pending a
metadata update, but the program to do the update in userspace must
be loaded from the volume where I/O is suspended ... ).  If the
notification facility accepts plug-in modules, are the plug-in
modules always loaded or are they only loaded when needed?  If
part of the notification facility is swapped out and is needed, you
could again have the deadlock issue.  Of course, most of these
issues go away or are more easily solved if they are dealt with in
the kernel, which is probably why you implemented your snapshot
support in the kernel. Hmmm ... I'll have to think about this
some more when I get the time.

>> Thus, to
>> support AIX (or any other enterprise level volume manager since
>> they all tend to have similar features) would require more than
>> "just a little bit of userland code", it would require a significant
>> amount of kernel code as well.
>
>No this can all be done from userland.

I think you are mistaken here.  I don't think it can be done completely
from userland for reasons just discussed.

>
>
>- Joe

Ben Rafanello
EVMS Team Lead
IBM Linux Technology Center
(512) 838-4762
benr@us.ibm.com





^ permalink raw reply	[flat|nested] 66+ messages in thread
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-25 17:36 Ben Rafanello
  2002-07-26  8:16 ` Joe Thornber
  0 siblings, 1 reply; 66+ messages in thread
From: Ben Rafanello @ 2002-07-25 17:36 UTC (permalink / raw)
  To: joe; +Cc: linux-kernel

On Tues, Jul 23, 2002 at 3:10 am, Joe Thornber wrote:
>On Mon, Jul 22, 2002 at 01:31:11PM -0500, Ben Rafanello wrote:
>> I believe you are referring to Device Mapper, which could, in theory,
>> handle the AIX metadata layout.  However, AFAIK, there are no tools
>> currently available or under development for Device Mapper to make
>> this happen.  Currently, EVMS is the only way to read/write to AIX
>> volumes under Linux.
>
>This is absolutely correct, LVM2 does not currently support AIX
>metadata.  However the LVM2 tools were designed to support multiple
>metadata formats, and it really would be very little work to write the
>code to do this (after all this is just a little bit of userland code,
>rather than kernel code in EVMS).  ATM Sistina are not willing to pay
>for this work, so it will have to come from some other part of the
>community.

After a quick look through the device mapper code, it appears that
device mapper knows nothing of the metadata format of the
volumes/partitions/etc. that it is mapping.  This will work well for
cases where the metadata for the volume/volume group does not have to be
updated at runtime.  However, it appears that device mapper needs a
kernel module to handle those cases where the volume metadata must
be updated during runtime (cases such as RAID 5, Mirroring -
particularly the fancier forms with features like smart resync
and hot spot mirroring, bad block relocation, etc.).  Thus, to
support AIX (or any other enterprise level volume manager since
they all tend to have similar features) would require more than
"just a little bit of userland code", it would require a significant
amount of kernel code as well.

>There is a little tool called dmsetup:
>
>http://people.sistina.com/~thornber/dmsetup_8.html
>
>that is essentially a very simple volume manager.  But it does give
>you full access to all the facilities of device-mapper.  eg, I just

Thanks for the link!  I'll give it a try.


Ben Rafanello
EVMS Team Lead
IBM Linux Technology Center
(512) 838-4762
benr@us.ibm.com



^ permalink raw reply	[flat|nested] 66+ messages in thread
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-22 23:47 Ben Rafanello
  0 siblings, 0 replies; 66+ messages in thread
From: Ben Rafanello @ 2002-07-22 23:47 UTC (permalink / raw)
  To: linux-kernel

On Mon, Jul 22, 2002 at 11:23:42 Joe Thornber wrote:
>On Thu, Jul 18, 2002 at 12:49:21AM -0400, Guillaume Boissiere wrote:
>> o EVMS (Enterprise Volume Management System)      (EVMS team)
>> o LVM (Logical Volume Manager) v2.0               (LVM team)
>
>Some comments on the 'EVMS vs LVM2' threads:
>
>I am only petitioning for the driver called 'device-mapper' to be
>included in the kernel.  This is a *much* lower level volume manager
>than either the EVMS or LVM1 drivers.  I am *not* petitioning for EVMS
>not to be included.
>
My position is similar - I would like to see EVMS in the kernel.  I
certainly would not mind seeing device mapper go into the kernel as
well.  EVMS was designed to appeal to the corporate user and to play
in the enterprise computing environment.  The goal was to make Linux
more attractive to users in this environment, and this determined much
of its look and feel, as well as its feature set.  However, enterprise
computing is just one of the environments where Linux is found.  While
what we have done to appeal to the enterprise user will be attractive
to other users as well, it is not a 'one size fits all' solution.
Similarly, Device Mapper appeals to a certain set of users and
applications as well.  Given this, I think that both should be included.

>People are getting understandably confused between device-mapper and
>LVM2:>
>
>*) device-mapper is a driver, intended to provide an extensible (via
>   the definition of new targets) framework capable of support
>   *anything* that volume management applications should want to do.
>

Are you working with Jeff Garzik?  It sounds like he is working on
something similar to device mapper for partition management.

>*) LVM2 is a userland application that uses the device-mapper driver to
>   provide a set of tools very similar to LVM1.  Currently LVM2 is the
>   only userland application that uses this driver, leading people to
>   associate the two far too strongly.
>
>It would be good if other volume managers embrace device-mapper
>allowing us to work together on the kernel side, and compete in
>userland.

Having multiple volume managers use device mapper, each without
being aware of the others, will lead to chaos.  This is why EVMS
is designed the way it is - so that we can safely have multiple
user interfaces/volume managers coexist.  This is where the real
work is.

>Kernel development takes *far* too much manpower for us to
>be duplicating work.

Our experience has been a little different - the kernel code was the
least of our worries.  The userspace code has been far more taxing ...

>For example I released the LVM2 vs EVMS snapshot
>benchmarks in the hope of encouraging EVMS to move over to
>device-mapper,

This is much easier said than done.

>unfortunately 2 months later a reply is posted stating
>that they have now developed equivalent (but broken) code :(

To say that our code is broken is not technically correct.  We
designed our async snapshot code with a different set of priorities
based upon the desires of our target audience.  Maximum performance
was deemed more important than the integrity of the snapshot across
a system crash as long as snapshot integrity is maintained across
clean shutdowns.  The code performs as advertised and is not
broken.  What you have an issue with is the design priorities we
followed when creating this version of async snapshots (we have
another version in the works which I think you may like better).

BTW, our performance team has been trying to get LVM2/Device Mapper
to work on some benchmarks so that they can complete their performance
work comparing LVM2/device mapper snapshots against EVMS snapshots.
In the performance results that were posted to this mailing list on
Fri, 12 Jul 2002 18:21:08 by Andrew Theurer <habanero@us.ibm.com>,
you will notice several DNFs.  Here we have LVM2/Device Mapper code
which is NOT working in accordance with its design, and is therefore
a better match for the term "broken".  The point here is that
LVM2/EVMS/Device Mapper are not perfect and there is little to be
gained by throwing stones at each other.

>
>Sistina and IBM *are* both competing with their volume managers, but I
>feel that this competition should be occuring in userland - and
>certainly is not relevant to this list.  For instance EVMS appears to
>do Volume + FS management whereas LVM2 does just volume management -
>in no way does device-mapper preclude FS management, yet that is the
>impression that some of the postings to the list have been giving.
>
>- Joe


Ben Rafanello
EVMS Team Lead
IBM Linux Technology Center
(512) 838-4762
benr@us.ibm.com



^ permalink raw reply	[flat|nested] 66+ messages in thread
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-22 21:42 Steve Pratt
  2002-07-23  8:16 ` Joe Thornber
  0 siblings, 1 reply; 66+ messages in thread
From: Steve Pratt @ 2002-07-22 21:42 UTC (permalink / raw)
  To: linux-kernel

on  2002-07-22 19:07:25 Christoph Hellwig wrote:

... snip

>> There
>> does not appear to be anything in either LVM2 or Device Mapper for
>> manipulating partition tables and resizing partitions.  User space tools
>> could be written to work with Device Mapper to make this happen, but
such
>> tools do not yet exist, AFAIK.

>And EVMS sucks in trucloads of fs code that already exists in userspace
>instead of using e.g. the parted library that can easily be linked to the
>LVM2 tools.

I don't know what code you are looking at because EVMS does
not suck in any code from existing fs utilities.  We only have enough
code to invoke the EXISTING utilities.  The only code we have is
simple things like version checks, superblock probes, and size
constraints.  For example, unlike  libparted which re-implements
resize of ext2 volumes, EVMS invokes the existing resize2fs.
In fact, all FSIMs have been developed in collaboration with the
filesystem owners, and in the case of JFS and EXT2/3 the FS
utility owners actually wrote the FSIM!

Also, if it is so easy to link parted with LVM2 to get greater
functionality,
why hasn't the LVM team or Andrew done this yet?  We went down this
road and found it was a dead end.

Steve





^ permalink raw reply	[flat|nested] 66+ messages in thread
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-22 18:31 Ben Rafanello
  2002-07-22 19:07 ` Christoph Hellwig
  2002-07-23  8:26 ` Joe Thornber
  0 siblings, 2 replies; 66+ messages in thread
From: Ben Rafanello @ 2002-07-22 18:31 UTC (permalink / raw)
  To: linux-kernel


On Sun, 2002-07-21 at 1:24 Alan Cox wrote:
>On Sat, 2002-07-20 at 22:24, Andreas Dilger wrote:
>> I, for one, would like to have the choice to use the AIX LVM format, and
>> I'm sure that people thinking of migrating from HP/UX or whatever would
>> want to be able to add support for their on-disk LVM format.  It really
>> provides a framework to consolidate all of the partition/MD code into
>> a single place (e.g. RAID, LVM, LDM (windows NT), DOS, BSD, Sun, etc).
>
>The LVM format for AIX and so on call all be handled by LVM2

I believe you are referring to Device Mapper, which could, in theory,
handle the AIX metadata layout.  However, AFAIK, there are no tools
currently available or under development for Device Mapper to make
this happen.  Currently, EVMS is the only way to read/write to AIX
volumes under Linux.

>
>> EVMS also allows things like creating snapshots and resizing for
>> partitions that were not originally set up as LVM volumes (i.e. you can
>> "upgrade" your existing DOS partitions in-place to support LVM features
>> instead of requiring a backup/restore cycle.
>
>LVM2 has had this for months

EVMS can snapshot anything it sees - partitions, LVM volumes, MD devices,
OS/2 volumes, AIX volumes, etc.  LVM2 does do snapshots of LVM2 volumes,
but if it isn't an LVM volume, LVM2 can not snapshot it.  Device Mapper,
however, could snapshot partitions and other non-LVM volumes if only the
tools were available.  As for resizing partitions, EVMS has the code to
manipulate partition tables, including the resizing of partitions.  There
does not appear to be anything in either LVM2 or Device Mapper for
manipulating partition tables and resizing partitions.  User space tools
could be written to work with Device Mapper to make this happen, but such
tools do not yet exist, AFAIK.


Ben Rafanello
EVMS Team Lead
IBM Linux Technology Center
(512) 838-4762
benr@us.ibm.com



^ permalink raw reply	[flat|nested] 66+ messages in thread
[parent not found: <OF918E6F71.637B1CBC-ON85256BFB.004CDDD0@pok.ibm.com.suse.lists.linux.kernel>]
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-21  4:42 Tom Walcott
  2002-07-21 13:48 ` Alan Cox
  0 siblings, 1 reply; 66+ messages in thread
From: Tom Walcott @ 2002-07-21  4:42 UTC (permalink / raw)
  To: linux-kernel

On Jul 21, 2002  01:24 +0100, Alan Cox wrote:
> On Sat, 2002-07-20 at 22:24, Andreas Dilger wrote:
> > I, for one, would like to have the choice to use
the AIX LVM format, and
> > I'm sure that people thinking of migrating from
HP/UX or whatever would
> > want to be able to add support for their on-disk
LVM format.  It really
> > provides a framework to consolidate all of the
partition/MD code into
> > a single place (e.g. RAID, LVM, LDM (windows NT),
DOS, BSD, Sun, etc).
> 
> The LVM format for AIX and so on call all be handled
by LVM2

Can LVM2 currently do everything that EVMS does? From
looking at this, it appears there is a difference.
http://evms.sourceforge.net/comparison.pdf

-Tom

__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com

^ permalink raw reply	[flat|nested] 66+ messages in thread
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-19 14:05 Mark Peloquin
  2002-07-20 21:05 ` Alan Cox
  0 siblings, 1 reply; 66+ messages in thread
From: Mark Peloquin @ 2002-07-19 14:05 UTC (permalink / raw)
  To: linux-kernel

On Wed, 2002-07-17 at 23:49, Guillaume Boissiere wrote:
> I broke down my status list into 3 categories:
> - likely to be merged before the Halloween feature freeze
> - likely not to be ready by Halloween
> - ongoing work
>
> Do you think the breakdown is realistic?
>
> -- Guillaume

o EVMS (Enterprise Volume Management System)      (EVMS team)

We are currently working to scrub and clean the code to
be compliant with the most recent kernel coding guidelines
by Greg K.H. EVMS will be ready in early August. The EVMS
team welcomes any comments, criticism, or suggestions.

Mark



^ permalink raw reply	[flat|nested] 66+ messages in thread
* Re: [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-18 11:57 Martin Knoblauch
  0 siblings, 0 replies; 66+ messages in thread
From: Martin Knoblauch @ 2002-07-18 11:57 UTC (permalink / raw)
  To: linux-kernel

>> o Add XFS (A journaling filesystem from SGI) (XFS team) 
>
>
> We are going to try for this before Halloween, Internal 
> code is being cleaned up an sanitized now, external 
> changes should start getting the same treatment soon and 
> get aired in public for, hopefully short, discussion. 
>
>
>Steve 

 it would be extremely desirable to get XFS into mainstream. Just my 2 
cents.

Martin
-- 
Martin Knoblauch
MSC.software GmbH
Am Moosfeld 13
D-81829 Muenchen, Germany

e-mail: martin.knoblauch@mscsoftware.com
httw://www.mscsoftware.com

Phone: +49-89-431987-189, Fax: +49-89-431987-7189

^ permalink raw reply	[flat|nested] 66+ messages in thread
* [2.6] Most likely to be merged by Halloween... THE LIST
@ 2002-07-18  4:49 Guillaume Boissiere
  2002-07-18  6:08 ` Greg KH
                   ` (10 more replies)
  0 siblings, 11 replies; 66+ messages in thread
From: Guillaume Boissiere @ 2002-07-18  4:49 UTC (permalink / raw)
  To: linux-kernel

I broke down my status list into 3 categories: 
- likely to be merged before the Halloween feature freeze
- likely not to be ready by Halloween
- ongoing work

Do you think the breakdown is realistic?

-- Guillaume

PS: Remember, no more than 15-20 big features get usually 
    merged in 3 months :-)


-------------------------------------------
Before feature freeze:

o New VM with reverse mappings                    (Rik van Riel)
o Add Linux Security Module (LSM)                 (LSM team)
o Rewrite of the console layer                    (James Simmons)
o New MTRR (Memory Type Range Register) driver    (Patrick Mochel)
o Add support for CPU clock/voltage scaling       (Erik Mouw, Dave Jones, Russell King, Arjan van de Ven)
o Strict address space accounting                 (Alan Cox)
o USB gadget support                              (Stuart Lynne, Greg Kroah-Hartman)
o Add hardware sensors drivers                    (lm_sensors team)
o Serial driver restructure                       (Russell King)
o Add User-Mode Linux (UML)                       (Jeff Dike)
o Direct pagecache <-> BIO disk I/O               (Andrew Morton)
o More complete NetBEUI stack                     (Arnaldo Carvalho de Melo, from Procom donated code)
o Fix device naming issues                        (Patrick Mochel, Greg Kroah-Hartman)


After feature freeze:

o Improved i2o (Intelligent Input/Ouput) layer    (Alan Cox)
o Read-Copy Update Mutual Exclusion               (Dipankar Sarma, Rusty Russell, Andrea Arcangeli, LSE Team)
o New kernel build system (kbuild 2.5)            (Keith Owens)
o PCMCIA Zoom video support                       (Alan Cox)
o Add XFS (A journaling filesystem from SGI)      (XFS team)
o New IO scheduler                                (Jens Axboe)
o Per-mountpoint read-only, union-mounts, unionfs (Al Viro)
o Asynchronous IO (aio) support                   (Ben LaHaise)
o EVMS (Enterprise Volume Management System)      (EVMS team)
o LVM (Logical Volume Manager) v2.0               (LVM team)
o Dynamic Probes                                  (Suparna Bhattacharya, dprobes team)
o Page table sharing                              (Daniel Phillips)
o ext2/ext3 online resize support                 (Andreas Dilger)
o UDF Write support for CD-R/RW (packet writing)  (Jens Axboe, Peter Osterlund)
o Better event logging for enterprise systems     (Larry Kessler, evlog team)
o Full compliance with IPv6                       (Alexey Kuznetzov, Jun Murai, Yoshifuji Hideaki, USAGI team)
o UMSDOS (Unix under MS-DOS) Rewrite              (Al Viro)
o Scalable Statistics Counter                     (Ravikiran Thirumalai)
o Linux Kernel Crash Dumps                        (Matt Robinson, LKCD team)
o Add support for NFS v4                          (NFS v4 team)
o ext2/ext3 large directory support: HTree index  (Daniel Phillips, Christopher Li, Ted Ts'o)
o Zerocopy NFS                                    (Hirokazu Takahashi)
o Remove the 2TB block device limit               (Peter Chubb)
o SCTP (Stream Control Transmission Protocol)     (lksctp team)
o High resolution timers                          (George Anzinger, etc.)
o Overhaul PCMCIA support                         (David Woodhouse, David Hinds)
o Reiserfs v4                                     (Reiserfs team)
o Serial ATA support                              (Andre Hedrick)
o InfiniBand support                              (InfiniBand team)
o New lightweight library (klibc)                 (Greg Kroah-Hartman)
o Replace initrd by initramfs                     (H. Peter Anvin, Al Viro)
o Add thrashing control                           (Rik van Riel)
o Remove all hardwired drivers from kernel        (Alan Cox, etc.)
o Generic parameter/command line interface        (Keith Owens)
o New mount API                                   (Al Viro)


Ongoing work:

o Fix long-held locks for low scheduling latency  (Andrew Morton, Robert Love, etc.)
o Better support of high-end NUMA machines        (NUMA team)
o Remove use of the BKL (Big Kernel Lock)         (Alan Cox, Robert Love, Neil Brown, Dave Hansen, etc.)
o Change all drivers to new driver model          (All maintainers)

^ permalink raw reply	[flat|nested] 66+ messages in thread
[parent not found: <OF918E6F71.637B1CBC-ON85256BFB.004CDDD0@pok.ibm.com.suse.lists.linux.kernel >]

end of thread, other threads:[~2002-07-29  8:57 UTC | newest]

Thread overview: 66+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-07-19  2:00 [2.6] Most likely to be merged by Halloween... THE LIST Val Henson
  -- strict thread matches above, loose matches on Subject: below --
2002-07-26 16:12 Ben Rafanello
2002-07-29  9:00 ` Joe Thornber
2002-07-25 17:36 Ben Rafanello
2002-07-26  8:16 ` Joe Thornber
2002-07-22 23:47 Ben Rafanello
2002-07-22 21:42 Steve Pratt
2002-07-23  8:16 ` Joe Thornber
2002-07-22 18:31 Ben Rafanello
2002-07-22 19:07 ` Christoph Hellwig
2002-07-23  8:26 ` Joe Thornber
     [not found] <OF918E6F71.637B1CBC-ON85256BFB.004CDDD0@pok.ibm.com.suse.lists.linux.kernel>
     [not found] ` <1027199147.16819.39.camel@irongate.swansea.linux.org.uk.suse.lists.linux.kernel>
2002-07-21  6:57   ` Andi Kleen
2002-07-21  7:23     ` Austin Gonyou
2002-07-21  8:33     ` Oliver Neukum
2002-07-21  8:47       ` Andi Kleen
2002-07-21 13:40     ` Alan Cox
2002-07-21 14:10       ` Andi Kleen
2002-07-21 15:52         ` Alasdair Kergon
2002-07-23 16:41       ` Timothy D. Witham
2002-07-21  4:42 Tom Walcott
2002-07-21 13:48 ` Alan Cox
2002-07-21 16:39   ` Tom Walcott
2002-07-19 14:05 Mark Peloquin
2002-07-20 21:05 ` Alan Cox
2002-07-20 20:30   ` Austin Gonyou
2002-07-20 20:55     ` David Weinehall
2002-07-20 21:24       ` Andreas Dilger
2002-07-21  0:24         ` Alan Cox
2002-07-21  1:47           ` Andreas Dilger
2002-07-26  8:52             ` Heinz J . Mauelshagen
2002-07-21 20:44       ` Ernst Lehmann
2002-07-18 11:57 Martin Knoblauch
2002-07-18  4:49 Guillaume Boissiere
2002-07-18  6:08 ` Greg KH
2002-07-18 16:14   ` Greg KH
2002-07-20  7:41     ` Shane Nay
2002-07-20  8:22       ` Russell King
     [not found]     ` <200207200805.BAA20399@granite.he.net>
2002-07-20 17:27       ` Greg KH
2002-07-18  8:20 ` Dave Jones
2002-07-18  8:36 ` Stephen Lord
2002-07-18  9:23 ` Tomas Szepe
2002-07-18 14:31 ` Martin J. Bligh
2002-07-18 16:47   ` Anton Blanchard
2002-07-19 15:08   ` Hubertus Franke
2002-07-18 16:15 ` Greg KH
2002-07-18 16:17 ` Greg KH
2002-07-18 16:39 ` Robert Love
2002-07-18 22:19   ` Rik van Riel
2002-07-18 16:46 ` Bill Davidsen
2002-07-18 20:22   ` Dave Jones
2002-07-18 23:17     ` Thunder from the hill
2002-07-19  1:18     ` Peter Osterlund
2002-07-19  9:40       ` Peter Osterlund
2002-07-23  9:39         ` Jens Axboe
2002-07-23 13:09           ` Peter Osterlund
2002-07-24  6:24             ` Jens Axboe
2002-07-20 13:06     ` Miles Lane
2002-07-22 20:50     ` Bill Davidsen
2002-07-19  4:45   ` Guillaume Boissiere
2002-07-19 17:31 ` William Lee Irwin III
2002-07-22 10:23 ` Joe Thornber
2002-07-22 15:22   ` Daniel Phillips
2002-07-22 16:57     ` Alan Cox
2002-07-22 16:45       ` Daniel Phillips
2002-07-22 18:00         ` Alan Cox
2002-07-23 22:33     ` Bill Davidsen
     [not found] <OF918E6F71.637B1CBC-ON85256BFB.004CDDD0@pok.ibm.com.suse.lists.linux.kernel >

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox