public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* optional delay after partition detection at boot time
@ 2005-06-12  6:50 subbie subbie
  2005-06-12  7:10 ` Jan Engelhardt
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: subbie subbie @ 2005-06-12  6:50 UTC (permalink / raw)
  To: linux-kernel

Hello,

 I'm sure some of you have come across this annoying
issue, the kernel messages scroll way too fast for a
human to be able to read them (let alone vgrep them).

 I'm proposing two features;

 1. a configurable (boot time, via kernel command
line) delay between each and every print -- kind of
overkill, but may be useful sometimes. 
 
 2. a configurable (boot time, via kernel command
line) delay after partition detection, so that a
humble system administrator would be able to actually
find out which partition he should specify at boot
time in order to boot his system.   This is especially
annoying on newer SATA systems where sometimes disks
are detected as SCSI and sometimes as standard ATA
(depending on BIOS settings), I'm sure though that it
could be useful in a number of other cases.

 Let the flames begin

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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

* Re: optional delay after partition detection at boot time
  2005-06-12  6:50 optional delay after partition detection at boot time subbie subbie
@ 2005-06-12  7:10 ` Jan Engelhardt
  2005-06-12  7:12 ` Willy Tarreau
  2005-06-12 13:25 ` Jesper Juhl
  2 siblings, 0 replies; 17+ messages in thread
From: Jan Engelhardt @ 2005-06-12  7:10 UTC (permalink / raw)
  To: subbie subbie; +Cc: linux-kernel


>human to be able to read them (let alone vgrep them).

dmesg | grep

> Let the flames begin

/* Write it, it's just a mdelay() or sort of in printk(). */



Jan Engelhardt                                                               
--                                                                            

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

* Re: optional delay after partition detection at boot time
  2005-06-12  6:50 optional delay after partition detection at boot time subbie subbie
  2005-06-12  7:10 ` Jan Engelhardt
@ 2005-06-12  7:12 ` Willy Tarreau
  2005-06-12 10:15   ` subbie subbie
                     ` (2 more replies)
  2005-06-12 13:25 ` Jesper Juhl
  2 siblings, 3 replies; 17+ messages in thread
From: Willy Tarreau @ 2005-06-12  7:12 UTC (permalink / raw)
  To: subbie subbie; +Cc: linux-kernel

On Sat, Jun 11, 2005 at 11:50:50PM -0700, subbie subbie wrote:
> Hello,
> 
>  I'm sure some of you have come across this annoying
> issue, the kernel messages scroll way too fast for a
> human to be able to read them (let alone vgrep them).
> 
>  I'm proposing two features;
> 
>  1. a configurable (boot time, via kernel command
> line) delay between each and every print -- kind of
> overkill, but may be useful sometimes. 
>  
>  2. a configurable (boot time, via kernel command
> line) delay after partition detection, so that a
> humble system administrator would be able to actually
> find out which partition he should specify at boot
> time in order to boot his system.   This is especially
> annoying on newer SATA systems where sometimes disks
> are detected as SCSI and sometimes as standard ATA
> (depending on BIOS settings), I'm sure though that it
> could be useful in a number of other cases.

What's the problem with "cat /proc/partitions" or "dmesg" ?
You seem to want to slow down *every* boot just to identify
a partition you need to find *once*. This seems overkill.

willy


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

* Re: optional delay after partition detection at boot time
  2005-06-12  7:12 ` Willy Tarreau
@ 2005-06-12 10:15   ` subbie subbie
  2005-06-12 10:27     ` Willy Tarreau
  2005-06-12 10:27   ` Geert Uytterhoeven
  2005-06-13  1:46   ` Valdis.Kletnieks
  2 siblings, 1 reply; 17+ messages in thread
From: subbie subbie @ 2005-06-12 10:15 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: linux-kernel

Willy,
 
 This is for a one-time use option, when the the admin
is having a hard time finding the root partition, let
alone the device NAME to boot the system ... proc is
not even mounted at that point yet.

 I can try booting ten times finding the correct scsi
device and partition number, but that's hairy
especially in situations where kernel config and BIOS
settings affect device detection.
 
 This is not for slowing everything down, let's say
just until root is mounted from then on, as you say,
dmesg and the system logs are available.

--- Willy Tarreau <willy@w.ods.org> wrote:

> On Sat, Jun 11, 2005 at 11:50:50PM -0700, subbie
> subbie wrote:
> > Hello,
> > 
> >  I'm sure some of you have come across this
> annoying
> > issue, the kernel messages scroll way too fast for
> a
> > human to be able to read them (let alone vgrep
> them).
> > 
> >  I'm proposing two features;
> > 
> >  1. a configurable (boot time, via kernel command
> > line) delay between each and every print -- kind
> of
> > overkill, but may be useful sometimes. 
> >  
> >  2. a configurable (boot time, via kernel command
> > line) delay after partition detection, so that a
> > humble system administrator would be able to
> actually
> > find out which partition he should specify at boot
> > time in order to boot his system.   This is
> especially
> > annoying on newer SATA systems where sometimes
> disks
> > are detected as SCSI and sometimes as standard ATA
> > (depending on BIOS settings), I'm sure though that
> it
> > could be useful in a number of other cases.
> 
> What's the problem with "cat /proc/partitions" or
> "dmesg" ?
> You seem to want to slow down *every* boot just to
> identify
> a partition you need to find *once*. This seems
> overkill.
> 
> willy
> 
> 



		
__________________________________ 
Discover Yahoo! 
Find restaurants, movies, travel and more fun for the weekend. Check it out! 
http://discover.yahoo.com/weekend.html 


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

* Re: optional delay after partition detection at boot time
  2005-06-12 10:15   ` subbie subbie
@ 2005-06-12 10:27     ` Willy Tarreau
  2005-06-12 10:32       ` Jan Engelhardt
  2005-06-13  2:22       ` David Lang
  0 siblings, 2 replies; 17+ messages in thread
From: Willy Tarreau @ 2005-06-12 10:27 UTC (permalink / raw)
  To: subbie subbie; +Cc: linux-kernel

On Sun, Jun 12, 2005 at 03:15:14AM -0700, subbie subbie wrote:
> Willy,
>  
>  This is for a one-time use option, when the the admin
> is having a hard time finding the root partition, let
> alone the device NAME to boot the system ... proc is
> not even mounted at that point yet.

There are two alternatives at boot :

  - either you know the root device, and everything is
    OK (mount /proc; cat /proc/partitions)

  - you don't know the root device, so the kernel will
    panic at boot because it cannot find the root device.
    In this case, you have the partition list still on
    the screen as it's among the latest things in the
    boot order. And if your kernel reboots upon panic,
    just boot it with panic=30 so get 30 seconds to read
    the partition table.

> I can try booting ten times finding the correct scsi
> device and partition number, but that's hairy
> especially in situations where kernel config and BIOS
> settings affect device detection.

I too know that it's sometimes hard to read SCSI devices
names on screen during the boot, but I'm not sure that
introducing a delay will be more useful than the full
pause provided by the panic. I may be wrong, though.
 
> This is not for slowing everything down, let's say
> just until root is mounted from then on, as you say,
> dmesg and the system logs are available.

OK.

Regards,
willy


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

* Re: optional delay after partition detection at boot time
  2005-06-12  7:12 ` Willy Tarreau
  2005-06-12 10:15   ` subbie subbie
@ 2005-06-12 10:27   ` Geert Uytterhoeven
  2005-06-12 11:05     ` Dr. David Alan Gilbert
  2005-06-13  1:46   ` Valdis.Kletnieks
  2 siblings, 1 reply; 17+ messages in thread
From: Geert Uytterhoeven @ 2005-06-12 10:27 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: subbie subbie, Linux Kernel Development

On Sun, 12 Jun 2005, Willy Tarreau wrote:
> On Sat, Jun 11, 2005 at 11:50:50PM -0700, subbie subbie wrote:
> >  I'm sure some of you have come across this annoying
> > issue, the kernel messages scroll way too fast for a
> > human to be able to read them (let alone vgrep them).
> > 
> >  I'm proposing two features;
> > 
> >  1. a configurable (boot time, via kernel command
> > line) delay between each and every print -- kind of
> > overkill, but may be useful sometimes. 
> >  
> >  2. a configurable (boot time, via kernel command
> > line) delay after partition detection, so that a
> > humble system administrator would be able to actually
> > find out which partition he should specify at boot
> > time in order to boot his system.   This is especially
> > annoying on newer SATA systems where sometimes disks
> > are detected as SCSI and sometimes as standard ATA
> > (depending on BIOS settings), I'm sure though that it
> > could be useful in a number of other cases.
> 
> What's the problem with "cat /proc/partitions" or "dmesg" ?
> You seem to want to slow down *every* boot just to identify
> a partition you need to find *once*. This seems overkill.

Or make the kernel print /proc/partitions when it is unable to mount root?

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

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

* Re: optional delay after partition detection at boot time
  2005-06-12 10:27     ` Willy Tarreau
@ 2005-06-12 10:32       ` Jan Engelhardt
  2005-06-13  2:22       ` David Lang
  1 sibling, 0 replies; 17+ messages in thread
From: Jan Engelhardt @ 2005-06-12 10:32 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: subbie subbie, linux-kernel

>
>  - you don't know the root device, so the kernel will
>    panic at boot because it cannot find the root device.
>    In this case, you have the partition list still on
>    the screen as it's among the latest things in the
>    boot order. And if your kernel reboots upon panic,
>    just boot it with panic=30 so get 30 seconds to read
>    the partition table.

And, I might add, boot with vga=6 to get a *BIG* screen, so you won't miss any 
messages.



Jan Engelhardt                                                               
--                                                                            
| Gesellschaft fuer Wissenschaftliche Datenverarbeitung Goettingen,
| Am Fassberg, 37077 Goettingen, www.gwdg.de

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

* Re: optional delay after partition detection at boot time
  2005-06-12 10:27   ` Geert Uytterhoeven
@ 2005-06-12 11:05     ` Dr. David Alan Gilbert
  2005-06-12 11:16       ` Willy Tarreau
  0 siblings, 1 reply; 17+ messages in thread
From: Dr. David Alan Gilbert @ 2005-06-12 11:05 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Willy Tarreau, subbie subbie, Linux Kernel Development

* Geert Uytterhoeven (geert@linux-m68k.org) wrote:

> Or make the kernel print /proc/partitions when it is unable to mount root?

I posted a patch in February to do this:

http://marc.theaimsgroup.com/?l=linux-kernel&m=110946077026065&w=2

Dave
--
 -----Open up your eyes, open up your mind, open up your code -------   
/ Dr. David Alan Gilbert    | Running GNU/Linux on Alpha,68K| Happy  \ 
\ gro.gilbert @ treblig.org | MIPS,x86,ARM,SPARC,PPC & HPPA | In Hex /
 \ _________________________|_____ http://www.treblig.org   |_______/

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

* Re: optional delay after partition detection at boot time
  2005-06-12 11:05     ` Dr. David Alan Gilbert
@ 2005-06-12 11:16       ` Willy Tarreau
  2005-06-12 12:54         ` Dr. David Alan Gilbert
  0 siblings, 1 reply; 17+ messages in thread
From: Willy Tarreau @ 2005-06-12 11:16 UTC (permalink / raw)
  To: Dr. David Alan Gilbert
  Cc: Geert Uytterhoeven, subbie subbie, Linux Kernel Development

On Sun, Jun 12, 2005 at 12:05:39PM +0100, Dr. David Alan Gilbert wrote:
> * Geert Uytterhoeven (geert@linux-m68k.org) wrote:
> 
> > Or make the kernel print /proc/partitions when it is unable to mount root?
> 
> I posted a patch in February to do this:
> 
> http://marc.theaimsgroup.com/?l=linux-kernel&m=110946077026065&w=2

This is even better ! I will probably backport it to 2.4 to merge in my
kernels ;-)

thanks,
Willy


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

* Re: optional delay after partition detection at boot time
  2005-06-12 11:16       ` Willy Tarreau
@ 2005-06-12 12:54         ` Dr. David Alan Gilbert
  2005-06-12 13:10           ` Andi Kleen
  0 siblings, 1 reply; 17+ messages in thread
From: Dr. David Alan Gilbert @ 2005-06-12 12:54 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: Geert Uytterhoeven, subbie subbie, Linux Kernel Development

* Willy Tarreau (willy@w.ods.org) wrote:
> On Sun, Jun 12, 2005 at 12:05:39PM +0100, Dr. David Alan Gilbert wrote:
> > * Geert Uytterhoeven (geert@linux-m68k.org) wrote:
> > 
> > > Or make the kernel print /proc/partitions when it is unable to mount root?
> > 
> > I posted a patch in February to do this:
> > 
> > http://marc.theaimsgroup.com/?l=linux-kernel&m=110946077026065&w=2
> 
> This is even better ! I will probably backport it to 2.4 to merge in my
> kernels ;-)

That would be nice (I'd like to see it in 2.6); I wrote it for two reasons:
   1) Because often the info you need has already scrolled off
    and because of the panic you can't scroll back.

   2) When talking to users on help channels the only thing they
     can normally tell you is the last 'failed to mount root' line
     and don't really no what to look back for, by having a
     few line summary you can more easily get someone to type out.

1) could be cured by not actually panic'ing.

Dave
--
 -----Open up your eyes, open up your mind, open up your code -------   
/ Dr. David Alan Gilbert    | Running GNU/Linux on Alpha,68K| Happy  \ 
\ gro.gilbert @ treblig.org | MIPS,x86,ARM,SPARC,PPC & HPPA | In Hex /
 \ _________________________|_____ http://www.treblig.org   |_______/

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

* Re: optional delay after partition detection at boot time
  2005-06-12 12:54         ` Dr. David Alan Gilbert
@ 2005-06-12 13:10           ` Andi Kleen
  2005-06-12 13:17             ` Willy Tarreau
  0 siblings, 1 reply; 17+ messages in thread
From: Andi Kleen @ 2005-06-12 13:10 UTC (permalink / raw)
  To: Dr. David Alan Gilbert
  Cc: Geert Uytterhoeven, subbie subbie, Linux Kernel Development

"Dr. David Alan Gilbert" <dave@treblig.org> writes:
>
> 1) could be cured by not actually panic'ing.

Actually one thing I always wanted was to make sysrq still work 
after panic. Then you could add a key to page through the dmesg
there too and the problem would be solved.

It would be extremly useful to reset remote servers when panic=timeout
is not set, but something went wrong with mounting /.

-Andi


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

* Re: optional delay after partition detection at boot time
  2005-06-12 13:10           ` Andi Kleen
@ 2005-06-12 13:17             ` Willy Tarreau
  0 siblings, 0 replies; 17+ messages in thread
From: Willy Tarreau @ 2005-06-12 13:17 UTC (permalink / raw)
  To: Andi Kleen
  Cc: Dr. David Alan Gilbert, Geert Uytterhoeven, subbie subbie,
	Linux Kernel Development

On Sun, Jun 12, 2005 at 03:10:59PM +0200, Andi Kleen wrote:
> "Dr. David Alan Gilbert" <dave@treblig.org> writes:
> >
> > 1) could be cured by not actually panic'ing.
> 
> Actually one thing I always wanted was to make sysrq still work 
> after panic. Then you could add a key to page through the dmesg
> there too and the problem would be solved.

Well, that's why I wrote kmsgdump several years ago :-) You could even print
the messages on a parallel printer or save them to a floppy disk.

> It would be extremly useful to reset remote servers when panic=timeout
> is not set, but something went wrong with mounting /.

I think that more generally, we should reset if there's no panic=timeout,
because the reasons for a panic are multiple and in case of remote servers,
it's always a nightmare to know that may be you will lose access after one
risky operation.

Willy


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

* Re: optional delay after partition detection at boot time
  2005-06-12  6:50 optional delay after partition detection at boot time subbie subbie
  2005-06-12  7:10 ` Jan Engelhardt
  2005-06-12  7:12 ` Willy Tarreau
@ 2005-06-12 13:25 ` Jesper Juhl
  2 siblings, 0 replies; 17+ messages in thread
From: Jesper Juhl @ 2005-06-12 13:25 UTC (permalink / raw)
  To: subbie subbie; +Cc: linux-kernel

On 6/12/05, subbie subbie <subbie_subbie@yahoo.com> wrote:
> Hello,
> 
>  I'm sure some of you have come across this annoying
> issue, the kernel messages scroll way too fast for a
> human to be able to read them (let alone vgrep them).
> 

If you need to pause the messages during boot, just press the  Scroll
Lock  key (or is it the  Pause  key, can't recall, but one of them
works).

-- 
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post  http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please      http://www.expita.com/nomime.html

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

* Re: optional delay after partition detection at boot time
  2005-06-12  7:12 ` Willy Tarreau
  2005-06-12 10:15   ` subbie subbie
  2005-06-12 10:27   ` Geert Uytterhoeven
@ 2005-06-13  1:46   ` Valdis.Kletnieks
  2 siblings, 0 replies; 17+ messages in thread
From: Valdis.Kletnieks @ 2005-06-13  1:46 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: subbie subbie, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 938 bytes --]

On Sun, 12 Jun 2005 09:12:13 +0200, Willy Tarreau said:
> On Sat, Jun 11, 2005 at 11:50:50PM -0700, subbie subbie wrote:
> > Hello,
> > 
> >  I'm sure some of you have come across this annoying
> > issue, the kernel messages scroll way too fast for a
> > human to be able to read them (let alone vgrep them).
> > 
> >  I'm proposing two features;
> > 
> >  1. a configurable (boot time, via kernel command
> > line) delay between each and every print -- kind of
> > overkill, but may be useful sometimes. 

> What's the problem with "cat /proc/partitions" or "dmesg" ?
> You seem to want to slow down *every* boot just to identify
> a partition you need to find *once*. This seems overkill.

There's been more than once that something's been borked up such that
I can't *GET* to where I can run a cat command or dmesg - and it's not
always a partition problem.

Personally, what I could go for is control-Q/S support for printk output :)

[-- Attachment #2: Type: application/pgp-signature, Size: 226 bytes --]

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

* Re: optional delay after partition detection at boot time
  2005-06-12 10:27     ` Willy Tarreau
  2005-06-12 10:32       ` Jan Engelhardt
@ 2005-06-13  2:22       ` David Lang
  2005-06-13  4:17         ` Willy Tarreau
  1 sibling, 1 reply; 17+ messages in thread
From: David Lang @ 2005-06-13  2:22 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: subbie subbie, linux-kernel

On Sun, 12 Jun 2005, Willy Tarreau wrote:

>  - you don't know the root device, so the kernel will
>    panic at boot because it cannot find the root device.
>    In this case, you have the partition list still on
>    the screen as it's among the latest things in the
>    boot order. And if your kernel reboots upon panic,
>    just boot it with panic=30 so get 30 seconds to read
>    the partition table.

I have one machine inmy lab that turns out to need to boot from /dev/sdq1

trust me, that partition info has LONG since scrolled off the screen by 
the time it fails to mount and panics.

I ended up setting up a serial console to capture the boot to figure this 
machine out, but that's a pretty extreme measure to have to go to.

David Lang

P.S. I had to do this after grub failed to mount by label (my guess is 
that grub only looks at so many drives before giving up on finding the 
label) so don't tell me that I should just use labels and then I wouldn't 
have to worry about this type of thing

-- 
There are two ways of constructing a software design. One way is to make it so simple that there are obviously no deficiencies. And the other way is to make it so complicated that there are no obvious deficiencies.
  -- C.A.R. Hoare

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

* Re: optional delay after partition detection at boot time
  2005-06-13  2:22       ` David Lang
@ 2005-06-13  4:17         ` Willy Tarreau
  2005-06-13  7:02           ` David Lang
  0 siblings, 1 reply; 17+ messages in thread
From: Willy Tarreau @ 2005-06-13  4:17 UTC (permalink / raw)
  To: David Lang; +Cc: subbie subbie, linux-kernel

On Sun, Jun 12, 2005 at 07:22:45PM -0700, David Lang wrote:
> On Sun, 12 Jun 2005, Willy Tarreau wrote:
> 
> > - you don't know the root device, so the kernel will
> >   panic at boot because it cannot find the root device.
> >   In this case, you have the partition list still on
> >   the screen as it's among the latest things in the
> >   boot order. And if your kernel reboots upon panic,
> >   just boot it with panic=30 so get 30 seconds to read
> >   the partition table.
> 
> I have one machine inmy lab that turns out to need to boot from /dev/sdq1
> 
> trust me, that partition info has LONG since scrolled off the screen by 
> the time it fails to mount and panics.

Interesting. How many total partitions do you have ? I ask this because
David Alan Gilbert proposed a patch to dump the partition list on the
screen upon panic. Perhaps it's larger than the screen in you case ? If
you have more than 25 partitions, to you think they can fit with 2 or 3
columns ?

> I ended up setting up a serial console to capture the boot to figure this 
> machine out, but that's a pretty extreme measure to have to go to.
> 
> David Lang
> 
> P.S. I had to do this after grub failed to mount by label (my guess is 
> that grub only looks at so many drives before giving up on finding the 
> label) so don't tell me that I should just use labels and then I wouldn't 
> have to worry about this type of thing

I wouldn't tell you that, I *hate* labels. It causes lots of problems
when you simply move some disks between machines.

Regards,
Willy


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

* Re: optional delay after partition detection at boot time
  2005-06-13  4:17         ` Willy Tarreau
@ 2005-06-13  7:02           ` David Lang
  0 siblings, 0 replies; 17+ messages in thread
From: David Lang @ 2005-06-13  7:02 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: subbie subbie, linux-kernel

> Interesting. How many total partitions do you have ? I ask this because
> David Alan Gilbert proposed a patch to dump the partition list on the
> screen upon panic. Perhaps it's larger than the screen in you case ? If
> you have more than 25 partitions, to you think they can fit with 2 or 3
> columns ?

This machine has 16 SATA drives with 1 partition each plus a (hardware) 
mirrored pair of SCSI drives with 4 partions, so only 20 partitions total 
in my config. however there are people who use more drives then this.

David Lang

-- 
There are two ways of constructing a software design. One way is to make it so simple that there are obviously no deficiencies. And the other way is to make it so complicated that there are no obvious deficiencies.
  -- C.A.R. Hoare

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

end of thread, other threads:[~2005-06-13  7:02 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-12  6:50 optional delay after partition detection at boot time subbie subbie
2005-06-12  7:10 ` Jan Engelhardt
2005-06-12  7:12 ` Willy Tarreau
2005-06-12 10:15   ` subbie subbie
2005-06-12 10:27     ` Willy Tarreau
2005-06-12 10:32       ` Jan Engelhardt
2005-06-13  2:22       ` David Lang
2005-06-13  4:17         ` Willy Tarreau
2005-06-13  7:02           ` David Lang
2005-06-12 10:27   ` Geert Uytterhoeven
2005-06-12 11:05     ` Dr. David Alan Gilbert
2005-06-12 11:16       ` Willy Tarreau
2005-06-12 12:54         ` Dr. David Alan Gilbert
2005-06-12 13:10           ` Andi Kleen
2005-06-12 13:17             ` Willy Tarreau
2005-06-13  1:46   ` Valdis.Kletnieks
2005-06-12 13:25 ` Jesper Juhl

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