* Re: udev: what's up with old /dev ?
@ 2004-10-11 7:19 Zack Weinberg
0 siblings, 0 replies; 23+ messages in thread
From: Zack Weinberg @ 2004-10-11 7:19 UTC (permalink / raw)
To: linux-kernel
Hacksaw writes:
>Zack Weinberg writes:
>>The very first thing init does is open /dev/console, and if it doesn't
>>exist the entire boot hangs.
>
>This raises a question: Would it be a useful thing to make a modified init
>that could run udev before it does anything else?
It wouldn't help. The opening of /dev/console actually happens inside
the kernel, near the bottom of init/main.c:
if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
printk("Warning: unable to open an initial console.\n");
(void) sys_dup(0);
(void) sys_dup(0);
That's not a fatal error, but the userspace startup process does get
stuck not very long afterward. (I'm not sure precisely where. It
hadn't mounted filesystems read-write yet.)
Control reaches the above code after an initramfs is unpacked, so
including /dev/console in an initramfs will work. I do not think it
will work to invoke udevstart from an initramfs or initrd *without*
also including a static /dev/console -- I'm pretty darn sure that
control reaches /init in an initramfs after the above code executes.
I'm not sure whether control reaches /linuxrc in an initrd before or
after the above code.
Being inside the kernel at this point, it seems to me there ought to
be some way to open device <5,1> without going through the filesystem,
but I could not find one.
[Tangentially, I thought kernel-side syscalls had been stamped out,
but there's still a __KERNEL_SYSCALLS__ #define at the top of the file
and a bare execve() in run_init_process()... which does in fact get
compiled to int $0x80 on my boring old x86...]
zw
^ permalink raw reply [flat|nested] 23+ messages in thread* Re: udev: what's up with old /dev ?
@ 2004-10-10 22:41 Michael Thonke
0 siblings, 0 replies; 23+ messages in thread
From: Michael Thonke @ 2004-10-10 22:41 UTC (permalink / raw)
Cc: linux-kernel
A couple questions:
- Is it possible to boot with an empty /dev, until udev builds it ?
No, it isn't as far as I know.
- If this is not the case, which are the minimal nodes that should be
present ?
/dev/null and /dev/console is needed to boot into the envoirment
- For any answer to previous question, shouldn't the distro set up minimal
/dev (empty or with a few nodes) and _delete_ the old /dev tree ?
At least I could do so, but at the moment /dev are also elemental for some distros..I have moved with gentoo and have had no problems along x86 32bit
but x86_64 driving me creazy
I you want more to know have a look at decibiles udev primer
Greets Michael
^ permalink raw reply [flat|nested] 23+ messages in thread
* udev: what's up with old /dev ?
@ 2004-10-10 22:08 J.A. Magallon
2004-10-10 22:51 ` Zack Weinberg
2004-10-12 0:19 ` Greg KH
0 siblings, 2 replies; 23+ messages in thread
From: J.A. Magallon @ 2004-10-10 22:08 UTC (permalink / raw)
To: Lista Mdk-Cooker; +Cc: Lista Linux-Kernel
Hi all...
I have just remembered that udev mounts /dev as a tmpfs filesystem, _on top_
of the old /dev directory. I have just booted to single user mode,
and checked that the old /dev is wasting around 13000 files (inodes) in my
box. Space is not an issue, that is around 480 Kb.
A couple questions:
- Is it possible to boot with an empty /dev, until udev builds it ?
- If this is not the case, which are the minimal nodes that should be
present ?
- For any answer to previous question, shouldn't the distro set up minimal
/dev (empty or with a few nodes) and _delete_ the old /dev tree ?
I don't remember exactly, but there are scripts at initscripts run before
udev. As I understand it, udev should be the very first thing to run, as
anything after it will probably need a /dev/something....
Why my simple logic does not work ?
(As I CC both cooker and LKML, this is a cooker specific question: could anybody
who has installed 10.1 from scratch, ie not an update, boot to runlevel 1 and
list his /dev)
TIA
--
J.A. Magallon <jamagallon()able!es> \ Software is like sex:
werewolf!able!es \ It's better when it's free
Mandrakelinux release 10.1 (Community) for i586
Linux 2.6.9-rc3-mm3 (gcc 3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)) #2
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-10 22:08 J.A. Magallon
@ 2004-10-10 22:51 ` Zack Weinberg
2004-10-10 23:15 ` Hacksaw
2004-10-12 0:19 ` Greg KH
1 sibling, 1 reply; 23+ messages in thread
From: Zack Weinberg @ 2004-10-10 22:51 UTC (permalink / raw)
To: linux-kernel, J. A. Magallon
> - Is it possible to boot with an empty /dev, until udev builds it ?
> - If this is not the case, which are the minimal nodes that should be
> present ?
Having just done this experiment myself: With kernel 2.6.8, udev 034,
Debian unstable's init scripts, and no initramfs or initrd, it
suffices to have /dev/console and /dev/null in the root filesystem's
/dev.
The very first thing init does is open /dev/console, and if it doesn't
exist the entire boot hangs. Thus, the only way to avoid having that
node on the root filesystem would be to set up udev from initrd or
initramfs. I'm sure that's possible but I don't know how to do it;
and the boot scripts that exist right now in Debian unstable are not
set up to handle that case.
It may not be necessary to have /dev/null on the root filesystem; I
didn't try that. Libc and the shell frequently open /dev/null behind
one's back, so I suspect it is wanted before udev starts up.
I have no idea what distros are planning in this area.
zw
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-10 22:51 ` Zack Weinberg
@ 2004-10-10 23:15 ` Hacksaw
2004-10-10 23:25 ` J.A. Magallon
2004-10-11 9:14 ` Felipe Alfaro Solana
0 siblings, 2 replies; 23+ messages in thread
From: Hacksaw @ 2004-10-10 23:15 UTC (permalink / raw)
To: linux-kernel
>The very first thing init does is open /dev/console, and if it doesn't
>exist the entire boot hangs.
This raises a question: Would it be a useful thing to make a modified init
that could run udev before it does anything else?
--
Melior amare chemia
http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-10 23:15 ` Hacksaw
@ 2004-10-10 23:25 ` J.A. Magallon
2004-10-11 0:06 ` Hacksaw
2004-10-11 19:13 ` Denis Vlasenko
2004-10-11 9:14 ` Felipe Alfaro Solana
1 sibling, 2 replies; 23+ messages in thread
From: J.A. Magallon @ 2004-10-10 23:25 UTC (permalink / raw)
To: Hacksaw; +Cc: linux-kernel
On 2004.10.11, Hacksaw wrote:
> >The very first thing init does is open /dev/console, and if it doesn't
> >exist the entire boot hangs.
>
> This raises a question: Would it be a useful thing to make a modified init
> that could run udev before it does anything else?
I don't think it is needed. There is no problem (i am thinking on rootles
nodes and PXE and so on...) on building a simple initrd with /dev/console,
/dev/null and half a dozen standard devices if they are needed. Just
to get udev run and have your real devices mounted there and overwrite
them.
I just remember one other oddity. To clean up my system, I copied the
running /dev to /dev-new, moved /dev to /dev-old and /dev-new to /dev.
But on 'reboot', I got a complaint about /dev/initctl not opening.
This could happen also with init. It opens real /dev/initctl on boot,
mounts /dev and tries to use new /dev/inittclt on shutdown...
--
J.A. Magallon <jamagallon()able!es> \ Software is like sex:
werewolf!able!es \ It's better when it's free
Mandrakelinux release 10.1 (Community) for i586
Linux 2.6.9-rc3-mm3 (gcc 3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)) #2
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-10 23:25 ` J.A. Magallon
@ 2004-10-11 0:06 ` Hacksaw
2004-10-11 19:13 ` Denis Vlasenko
1 sibling, 0 replies; 23+ messages in thread
From: Hacksaw @ 2004-10-11 0:06 UTC (permalink / raw)
To: J.A. Magallon; +Cc: linux-kernel
>I don't think it is needed. There is no problem (i am thinking on rootles
>nodes and PXE and so on...) on building a simple initrd with /dev/console,
>/dev/null
I'm looking for no initrd. I'm not a fan of them. It seems like having to use
an electric drill to start your car.
I like the idea that someone could accidentally scribble all over /dev, and on
reboot the system would just rebuild it. It makes /dev less of a vulnerability.
--
Sleepy, Dopey, Sneezy, Bashful, Grumpy, Happy, Doc
Just in case you'd forgotten...
http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-10 23:25 ` J.A. Magallon
2004-10-11 0:06 ` Hacksaw
@ 2004-10-11 19:13 ` Denis Vlasenko
1 sibling, 0 replies; 23+ messages in thread
From: Denis Vlasenko @ 2004-10-11 19:13 UTC (permalink / raw)
To: J.A. Magallon, Hacksaw; +Cc: linux-kernel
On Monday 11 October 2004 02:25, J.A. Magallon wrote:
>
> On 2004.10.11, Hacksaw wrote:
> > >The very first thing init does is open /dev/console, and if it doesn't
> > >exist the entire boot hangs.
> >
> > This raises a question: Would it be a useful thing to make a modified init
> > that could run udev before it does anything else?
>
> I don't think it is needed. There is no problem (i am thinking on rootles
> nodes and PXE and so on...) on building a simple initrd with /dev/console,
> /dev/null and half a dozen standard devices if they are needed. Just
> to get udev run and have your real devices mounted there and overwrite
> them.
>
> I just remember one other oddity. To clean up my system, I copied the
> running /dev to /dev-new, moved /dev to /dev-old and /dev-new to /dev.
> But on 'reboot', I got a complaint about /dev/initctl not opening.
> This could happen also with init. It opens real /dev/initctl on boot,
> mounts /dev and tries to use new /dev/inittclt on shutdown...
What /dev/initctl? Why do you have a pipe in a directory
which supposed to have device nodes only?
Get better init.
--
vda
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-10 23:15 ` Hacksaw
2004-10-10 23:25 ` J.A. Magallon
@ 2004-10-11 9:14 ` Felipe Alfaro Solana
2004-10-11 10:29 ` Arkadiusz Miskiewicz
2004-10-11 11:11 ` Hacksaw
1 sibling, 2 replies; 23+ messages in thread
From: Felipe Alfaro Solana @ 2004-10-11 9:14 UTC (permalink / raw)
To: Hacksaw; +Cc: linux-kernel
On Oct 11, 2004, at 01:15, Hacksaw wrote:
>> The very first thing init does is open /dev/console, and if it doesn't
>> exist the entire boot hangs.
>
> This raises a question: Would it be a useful thing to make a modified
> init
> that could run udev before it does anything else?
FC3t2 boots from an "initrd" image that, among other things, mounts a
tmpfs over "/dev" and creates "console", "null", "pts" and then
proceeds to load "init".
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-11 9:14 ` Felipe Alfaro Solana
@ 2004-10-11 10:29 ` Arkadiusz Miskiewicz
2004-10-11 12:02 ` Felipe Alfaro Solana
2004-10-11 11:11 ` Hacksaw
1 sibling, 1 reply; 23+ messages in thread
From: Arkadiusz Miskiewicz @ 2004-10-11 10:29 UTC (permalink / raw)
To: linux-kernel
On Monday 11 of October 2004 11:14, Felipe Alfaro Solana wrote:
> On Oct 11, 2004, at 01:15, Hacksaw wrote:
> >> The very first thing init does is open /dev/console, and if it doesn't
> >> exist the entire boot hangs.
> >
> > This raises a question: Would it be a useful thing to make a modified
> > init
> > that could run udev before it does anything else?
>
> FC3t2 boots from an "initrd" image that, among other things, mounts a
> tmpfs over "/dev" and creates "console", "null", "pts" and then
> proceeds to load "init".
... and it ignores root= kernel cmdline option. rootfs is hardcoded in initrd
which is very ugly.
Creating /dev entries on rootfs from initrd without hardcoding rootfs device
is quite problematic.
--
Arkadiusz Miśkiewicz PLD/Linux Team
http://www.t17.ds.pwr.wroc.pl/~misiek/ http://ftp.pld-linux.org/
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-11 10:29 ` Arkadiusz Miskiewicz
@ 2004-10-11 12:02 ` Felipe Alfaro Solana
0 siblings, 0 replies; 23+ messages in thread
From: Felipe Alfaro Solana @ 2004-10-11 12:02 UTC (permalink / raw)
To: Arkadiusz Miskiewicz; +Cc: linux-kernel
On Oct 11, 2004, at 12:29, Arkadiusz Miskiewicz wrote:
> On Monday 11 of October 2004 11:14, Felipe Alfaro Solana wrote:
>> On Oct 11, 2004, at 01:15, Hacksaw wrote:
>>>> The very first thing init does is open /dev/console, and if it
>>>> doesn't
>>>> exist the entire boot hangs.
>>>
>>> This raises a question: Would it be a useful thing to make a modified
>>> init
>>> that could run udev before it does anything else?
>>
>> FC3t2 boots from an "initrd" image that, among other things, mounts a
>> tmpfs over "/dev" and creates "console", "null", "pts" and then
>> proceeds to load "init".
> ... and it ignores root= kernel cmdline option. rootfs is hardcoded in
> initrd
> which is very ugly.
I haven't seen any hardcoded root filesystem reference in the INITRD
image. Instead, I see "/dev/root" which is supposed to be exactly the
root filesystem passed to the kernel via "root=".
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-11 9:14 ` Felipe Alfaro Solana
2004-10-11 10:29 ` Arkadiusz Miskiewicz
@ 2004-10-11 11:11 ` Hacksaw
2004-10-11 12:04 ` Felipe Alfaro Solana
1 sibling, 1 reply; 23+ messages in thread
From: Hacksaw @ 2004-10-11 11:11 UTC (permalink / raw)
To: Felipe Alfaro Solana; +Cc: linux-kernel
>FC3t2 boots from an "initrd" image that, among other things, mounts a
>tmpfs over "/dev" and creates "console", "null", "pts" and then
>proceeds to load "init".
Is that considered good? I like RedHat, but they are well known for doing
things of dubious taste.
But I just dislike the whole "stopped dead because of the state of the disk"
thing. I mean, sure, if there large amounts of stuff just missing, it might be
hard to get anything done, but it sure would be nice if the kernel would try
really hard to get to a shell so I can figure out what the problem is.
If the initrd gets corrupted, are we just hosed?
--
Is qui iacit in hamas marsupiales.
http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-11 11:11 ` Hacksaw
@ 2004-10-11 12:04 ` Felipe Alfaro Solana
2004-10-11 20:06 ` Hacksaw
0 siblings, 1 reply; 23+ messages in thread
From: Felipe Alfaro Solana @ 2004-10-11 12:04 UTC (permalink / raw)
To: Hacksaw; +Cc: linux-kernel
On Oct 11, 2004, at 13:11, Hacksaw wrote:
>> FC3t2 boots from an "initrd" image that, among other things, mounts a
>> tmpfs over "/dev" and creates "console", "null", "pts" and then
>> proceeds to load "init".
>
> Is that considered good? I like RedHat, but they are well known for
> doing
> things of dubious taste.
>
> But I just dislike the whole "stopped dead because of the state of the
> disk"
> thing. I mean, sure, if there large amounts of stuff just missing, it
> might be
> hard to get anything done, but it sure would be nice if the kernel
> would try
> really hard to get to a shell so I can figure out what the problem is.
>
> If the initrd gets corrupted, are we just hosed?
In some way, the answer is yes... I think the best is having a real,
on-disk, full "/dev" hierarchy in case the INITRD gets lost or
corrupted, which will still allow booting. Now, the INITRD can mount
tmpfs over "/dev" and use udev to create needed device nodes.
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-11 12:04 ` Felipe Alfaro Solana
@ 2004-10-11 20:06 ` Hacksaw
2004-10-11 20:51 ` Bartlomiej Zolnierkiewicz
0 siblings, 1 reply; 23+ messages in thread
From: Hacksaw @ 2004-10-11 20:06 UTC (permalink / raw)
To: Felipe Alfaro Solana; +Cc: linux-kernel
>> If the initrd gets corrupted, are we just hosed?
>
>In some way, the answer is yes... I think the best is having a real,
>on-disk, full "/dev" hierarchy in case the INITRD gets lost or
>corrupted, which will still allow booting. Now, the INITRD can mount
>tmpfs over "/dev" and use udev to create needed device nodes.
And see, this is where I say, what if /dev is hosed too? If the kernel at this
point gives up, then the user has to dig up a boot CD or something worse and
start trying to fix the system.
If, however, the kernel just made /dev/console and maybe /dev/null, it could
start a shell and say "/dev missing /console device, initrd corrupted. Hit
enter for a shell or ctrl-alt-del to reboot."
As a sys-admin, I'd like that. Get me into single user mode the best you can.
If a shell can be found, that's good enough.
--
The best is the enemy of the good -- Voltaire
The Good Enough is the enemy of the Great -- Me
http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-11 20:06 ` Hacksaw
@ 2004-10-11 20:51 ` Bartlomiej Zolnierkiewicz
2004-10-11 21:28 ` Hacksaw
0 siblings, 1 reply; 23+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2004-10-11 20:51 UTC (permalink / raw)
To: Hacksaw; +Cc: Felipe Alfaro Solana, linux-kernel
On Mon, 11 Oct 2004 16:06:02 -0400, Hacksaw <hacksaw@hacksaw.org> wrote:
> >> If the initrd gets corrupted, are we just hosed?
> >
> >In some way, the answer is yes... I think the best is having a real,
> >on-disk, full "/dev" hierarchy in case the INITRD gets lost or
> >corrupted, which will still allow booting. Now, the INITRD can mount
> >tmpfs over "/dev" and use udev to create needed device nodes.
>
> And see, this is where I say, what if /dev is hosed too? If the kernel at this
> point gives up, then the user has to dig up a boot CD or something worse and
> start trying to fix the system.
What if kernel image is hosed instead?
Having corrupted initrd is not so diffirent from having corrupted kernel
image and usually they are both located on the same medium...
> If, however, the kernel just made /dev/console and maybe /dev/null, it could
> start a shell and say "/dev missing /console device, initrd corrupted. Hit
> enter for a shell or ctrl-alt-del to reboot."
>
> As a sys-admin, I'd like that. Get me into single user mode the best you can.
> If a shell can be found, that's good enough.
> --
> The best is the enemy of the good -- Voltaire
> The Good Enough is the enemy of the Great -- Me
>
>
> http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-10 22:08 J.A. Magallon
2004-10-10 22:51 ` Zack Weinberg
@ 2004-10-12 0:19 ` Greg KH
2004-10-12 8:11 ` Harald Dunkel
1 sibling, 1 reply; 23+ messages in thread
From: Greg KH @ 2004-10-12 0:19 UTC (permalink / raw)
To: J.A. Magallon; +Cc: Lista Mdk-Cooker, Lista Linux-Kernel
On Sun, Oct 10, 2004 at 10:08:49PM +0000, J.A. Magallon wrote:
> Hi all...
>
> I have just remembered that udev mounts /dev as a tmpfs filesystem, _on top_
> of the old /dev directory.
Well, that's the way _your_ distro does it. Mine has an empty /dev on
the root filesystem, and the init scripts create a ramfs on top of /dev
at boot time, which udev fills up.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-12 0:19 ` Greg KH
@ 2004-10-12 8:11 ` Harald Dunkel
2004-10-12 16:58 ` Greg KH
0 siblings, 1 reply; 23+ messages in thread
From: Harald Dunkel @ 2004-10-12 8:11 UTC (permalink / raw)
To: Greg KH; +Cc: J.A. Magallon, Lista Mdk-Cooker, Lista Linux-Kernel
Greg KH wrote:
> On Sun, Oct 10, 2004 at 10:08:49PM +0000, J.A. Magallon wrote:
>
>>Hi all...
>>
>>I have just remembered that udev mounts /dev as a tmpfs filesystem, _on top_
>>of the old /dev directory.
>
>
> Well, that's the way _your_ distro does it. Mine has an empty /dev on
> the root filesystem, and the init scripts create a ramfs on top of /dev
> at boot time, which udev fills up.
>
I don't like this "my distro is better than yours".
Any pointer to some code online?
Thanx very much
Harri
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: udev: what's up with old /dev ?
2004-10-12 8:11 ` Harald Dunkel
@ 2004-10-12 16:58 ` Greg KH
[not found] ` <416C26B4.6040408@t-online.de>
0 siblings, 1 reply; 23+ messages in thread
From: Greg KH @ 2004-10-12 16:58 UTC (permalink / raw)
To: Harald Dunkel; +Cc: J.A. Magallon, Lista Mdk-Cooker, Lista Linux-Kernel
On Tue, Oct 12, 2004 at 10:11:48AM +0200, Harald Dunkel wrote:
> Greg KH wrote:
> >On Sun, Oct 10, 2004 at 10:08:49PM +0000, J.A. Magallon wrote:
> >
> >>Hi all...
> >>
> >>I have just remembered that udev mounts /dev as a tmpfs filesystem, _on
> >>top_
> >>of the old /dev directory.
> >
> >
> >Well, that's the way _your_ distro does it. Mine has an empty /dev on
> >the root filesystem, and the init scripts create a ramfs on top of /dev
> >at boot time, which udev fills up.
>
> I don't like this "my distro is better than yours".
I'm not trying to imply this at all. All I'm saying is this is a distro
specific issue, not a kernel issue, so it isn't a linux-kernel topic.
> Any pointer to some code online?
Look at the gentoo init package, or read the documentation in the udev
tarball for how to do this for Red Hat. I've successfully done this on
both distros.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 23+ messages in thread
end of thread, other threads:[~2004-10-13 14:37 UTC | newest]
Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-11 7:19 udev: what's up with old /dev ? Zack Weinberg
-- strict thread matches above, loose matches on Subject: below --
2004-10-10 22:41 Michael Thonke
2004-10-10 22:08 J.A. Magallon
2004-10-10 22:51 ` Zack Weinberg
2004-10-10 23:15 ` Hacksaw
2004-10-10 23:25 ` J.A. Magallon
2004-10-11 0:06 ` Hacksaw
2004-10-11 19:13 ` Denis Vlasenko
2004-10-11 9:14 ` Felipe Alfaro Solana
2004-10-11 10:29 ` Arkadiusz Miskiewicz
2004-10-11 12:02 ` Felipe Alfaro Solana
2004-10-11 11:11 ` Hacksaw
2004-10-11 12:04 ` Felipe Alfaro Solana
2004-10-11 20:06 ` Hacksaw
2004-10-11 20:51 ` Bartlomiej Zolnierkiewicz
2004-10-11 21:28 ` Hacksaw
2004-10-12 0:19 ` Greg KH
2004-10-12 8:11 ` Harald Dunkel
2004-10-12 16:58 ` Greg KH
[not found] ` <416C26B4.6040408@t-online.de>
[not found] ` <20041012185733.GA31222@kroah.com>
[not found] ` <416C3BB6.4040200@t-online.de>
[not found] ` <20041012203022.GB32139@kroah.com>
2004-10-12 21:35 ` Harald Dunkel
2004-10-13 13:08 ` Mathieu Segaud
2004-10-13 14:13 ` Harald Dunkel
2004-10-13 14:33 ` Mathieu Segaud
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox