public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Size of kernel modules
@ 2007-06-06 15:05 Christoph Pleger
  2007-06-06 15:51 ` Jesper Juhl
                   ` (4 more replies)
  0 siblings, 5 replies; 16+ messages in thread
From: Christoph Pleger @ 2007-06-06 15:05 UTC (permalink / raw)
  To: linux-kernel

Hello,

I have a machine here which I installed with Ubuntu 7.04. Immediately
after the installation had been finished, I installed the Ubuntu package
which contains the Ubuntu-modified sources of the linux kernel. I
extracted the resulting tar.bz2-file, copied the configuration of the
currently running kernel to .config and created a file localversion-irb
which contains the line "-irb" and then called "make menuconfig". In the
menu, I changed the CPU type from 586 to Pentium Pro and entered "-686"
as the localversion. Finally, I used the Ubuntu tool make-kpkg with
option "--initrd" to create a new kernel. The option "--initrd" causes
the installation scripts of the kernel package to automatically create
an initial ramdisk for the kernel.

After the new kernel package had been created, I installed it. After
that, I looked into the directory /boot and was very surprised: The
initial ramdisk of the new kernel was much larger than the initrd of the
old kernel. To find out the cause for this, I investigated how
directories /lib/modules/$old and /lib/modules/$new differ. I found out
that the filenames are the same, but the size of the files differs very
much. I found a module file in the new directory that was almost five
times as large as the file with the same name in the old directory.

So, my question is the follwing: Is it an expected feature that the file
sizes of modules grow so much only because of a different cpu type and a
different localversion, or is there probably a bug in my build tools?

Regards
  Christoph

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

* Re: Size of kernel modules
  2007-06-06 15:05 Size of kernel modules Christoph Pleger
@ 2007-06-06 15:51 ` Jesper Juhl
  2007-06-06 16:56   ` Jan Engelhardt
  2007-06-06 17:17   ` Sam Ravnborg
  2007-06-06 15:59 ` jimmy bahuleyan
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 16+ messages in thread
From: Jesper Juhl @ 2007-06-06 15:51 UTC (permalink / raw)
  To: Christoph Pleger; +Cc: linux-kernel

On 06/06/07, Christoph Pleger <Christoph.Pleger@cs.uni-dortmund.de> wrote:
> Hello,
>
> I have a machine here which I installed with Ubuntu 7.04. Immediately
> after the installation had been finished, I installed the Ubuntu package
> which contains the Ubuntu-modified sources of the linux kernel. I
> extracted the resulting tar.bz2-file, copied the configuration of the
> currently running kernel to .config and created a file localversion-irb
> which contains the line "-irb" and then called "make menuconfig".

You forgot "make oldconfig". When you copy in a .config file from a
different kernel, always do oldconfig (just get in the habbit, if the
.config from the same kernel it's harmless).

> In the
> menu, I changed the CPU type from 586 to Pentium Pro and entered "-686"
> as the localversion. Finally, I used the Ubuntu tool make-kpkg with
> option "--initrd" to create a new kernel. The option "--initrd" causes
> the installation scripts of the kernel package to automatically create
> an initial ramdisk for the kernel.
>
> After the new kernel package had been created, I installed it. After
> that, I looked into the directory /boot and was very surprised: The
> initial ramdisk of the new kernel was much larger than the initrd of the
> old kernel. To find out the cause for this, I investigated how
> directories /lib/modules/$old and /lib/modules/$new differ. I found out
> that the filenames are the same, but the size of the files differs very
> much. I found a module file in the new directory that was almost five
> times as large as the file with the same name in the old directory.
>
> So, my question is the follwing: Is it an expected feature that the file
> sizes of modules grow so much only because of a different cpu type and a
> different localversion, or is there probably a bug in my build tools?
>
Compiling for a different CPU type will often change object file size,
but what you describe sounds extreme. I would have suspected something
along the lines of some debug options having been enabled - that would
more easily explain the large size difference.

-- 
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] 16+ messages in thread

* Re: Size of kernel modules
  2007-06-06 15:05 Size of kernel modules Christoph Pleger
  2007-06-06 15:51 ` Jesper Juhl
@ 2007-06-06 15:59 ` jimmy bahuleyan
  2007-06-06 17:22 ` Sam Ravnborg
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 16+ messages in thread
From: jimmy bahuleyan @ 2007-06-06 15:59 UTC (permalink / raw)
  To: Christoph Pleger; +Cc: linux-kernel

Christoph Pleger wrote:
> Hello,
> 
[snip]
> After the new kernel package had been created, I installed it. After
> that, I looked into the directory /boot and was very surprised: The
> initial ramdisk of the new kernel was much larger than the initrd of the
> old kernel. To find out the cause for this, I investigated how
> directories /lib/modules/$old and /lib/modules/$new differ. I found out
> that the filenames are the same, but the size of the files differs very
> much. I found a module file in the new directory that was almost five
> times as large as the file with the same name in the old directory.
> 

sounds more like you have debug options enabled?

-jb
-- 
Tact is the art of making a point without making an enemy.

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

* Re: Size of kernel modules
  2007-06-06 15:51 ` Jesper Juhl
@ 2007-06-06 16:56   ` Jan Engelhardt
  2007-06-06 17:17   ` Sam Ravnborg
  1 sibling, 0 replies; 16+ messages in thread
From: Jan Engelhardt @ 2007-06-06 16:56 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: Christoph Pleger, linux-kernel


On Jun 6 2007 17:51, Jesper Juhl wrote:
> On 06/06/07, Christoph Pleger <Christoph.Pleger@cs.uni-dortmund.de> wrote:
>> Hello,
>> 
>> I have a machine here which I installed with Ubuntu 7.04. Immediately
>> after the installation had been finished, I installed the Ubuntu package
>> which contains the Ubuntu-modified sources of the linux kernel. I
>> extracted the resulting tar.bz2-file, copied the configuration of the
>> currently running kernel to .config and created a file localversion-irb
>> which contains the line "-irb" and then called "make menuconfig".
>
> You forgot "make oldconfig". When you copy in a .config file from a
> different kernel, always do oldconfig (just get in the habbit, if the
> .config from the same kernel it's harmless).

oldconfig is automatically called AFAICS.


	Jan
-- 

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

* Re: Size of kernel modules
  2007-06-06 15:51 ` Jesper Juhl
  2007-06-06 16:56   ` Jan Engelhardt
@ 2007-06-06 17:17   ` Sam Ravnborg
  1 sibling, 0 replies; 16+ messages in thread
From: Sam Ravnborg @ 2007-06-06 17:17 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: Christoph Pleger, linux-kernel

On Wed, Jun 06, 2007 at 05:51:24PM +0200, Jesper Juhl wrote:
> On 06/06/07, Christoph Pleger <Christoph.Pleger@cs.uni-dortmund.de> wrote:
> >Hello,
> >
> >I have a machine here which I installed with Ubuntu 7.04. Immediately
> >after the installation had been finished, I installed the Ubuntu package
> >which contains the Ubuntu-modified sources of the linux kernel. I
> >extracted the resulting tar.bz2-file, copied the configuration of the
> >currently running kernel to .config and created a file localversion-irb
> >which contains the line "-irb" and then called "make menuconfig".
> 
> You forgot "make oldconfig". When you copy in a .config file from a
> different kernel, always do oldconfig (just get in the habbit, if the
> .config from the same kernel it's harmless).
Christoph used menuconfig so his configuration was perfectly OK and
oldconfig would not have changed anything.

	Sam

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

* Re: Size of kernel modules
  2007-06-06 15:05 Size of kernel modules Christoph Pleger
  2007-06-06 15:51 ` Jesper Juhl
  2007-06-06 15:59 ` jimmy bahuleyan
@ 2007-06-06 17:22 ` Sam Ravnborg
  2007-06-06 18:40 ` Joseph Fannin
  2007-06-08  3:44 ` Kyle McMartin
  4 siblings, 0 replies; 16+ messages in thread
From: Sam Ravnborg @ 2007-06-06 17:22 UTC (permalink / raw)
  To: Christoph Pleger; +Cc: linux-kernel

On Wed, Jun 06, 2007 at 05:05:34PM +0200, Christoph Pleger wrote:
> Hello,
> 
> I have a machine here which I installed with Ubuntu 7.04. Immediately
> after the installation had been finished, I installed the Ubuntu package
> which contains the Ubuntu-modified sources of the linux kernel. I
> extracted the resulting tar.bz2-file, copied the configuration of the
> currently running kernel to .config and created a file localversion-irb
> which contains the line "-irb" and then called "make menuconfig". In the
> menu, I changed the CPU type from 586 to Pentium Pro and entered "-686"
> as the localversion. Finally, I used the Ubuntu tool make-kpkg with
> option "--initrd" to create a new kernel. The option "--initrd" causes
> the installation scripts of the kernel package to automatically create
> an initial ramdisk for the kernel.
> 
> After the new kernel package had been created, I installed it. After
> that, I looked into the directory /boot and was very surprised: The
> initial ramdisk of the new kernel was much larger than the initrd of the
> old kernel. To find out the cause for this, I investigated how
> directories /lib/modules/$old and /lib/modules/$new differ. I found out
> that the filenames are the same, but the size of the files differs very
> much. I found a module file in the new directory that was almost five
> times as large as the file with the same name in the old directory.
> 
> So, my question is the follwing: Is it an expected feature that the file
> sizes of modules grow so much only because of a different cpu type and a
> different localversion, or is there probably a bug in my build tools?

My best guess is that the orignally installed modules are stripped.
If you define INSTALL_MOD_STRIP then you would achieve the same.
>From Documentation/kbuild/makefile.txt:

    INSTALL_MOD_STRIP

	If this variable is specified, will cause modules to be stripped
	after they are installed.  If INSTALL_MOD_STRIP is '1', then the
	default option --strip-debug will be used.  Otherwise,
	INSTALL_MOD_STRIP will used as the option(s) to the strip command.


So you could do something like this:
>$ INSTALL_MOD_STRIP=1 make modules_install

	Sam

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

* Re: Size of kernel modules
  2007-06-06 15:05 Size of kernel modules Christoph Pleger
                   ` (2 preceding siblings ...)
  2007-06-06 17:22 ` Sam Ravnborg
@ 2007-06-06 18:40 ` Joseph Fannin
  2007-06-08  3:44 ` Kyle McMartin
  4 siblings, 0 replies; 16+ messages in thread
From: Joseph Fannin @ 2007-06-06 18:40 UTC (permalink / raw)
  To: Christoph Pleger; +Cc: linux-kernel

On Wed, Jun 06, 2007 at 05:05:34PM +0200, Christoph Pleger wrote:
> I found out that the filenames are the same, but the size of the files
> differs very much. I found a module file in the new directory that was
> almost five times as large as the file with the same name in the old
> directory.

    For some reason I haven't looked into, copying the Ubuntu .config
file always results in having "Build the kernel with debug info"
set, which makes the resulting kernel huge.  Ubuntu's distributed
kernel binary certainly doesn't have this stuff built in, so turn it
off in the "Kernel Hacking" menu.

    If you find that your new kernel spews a lot of messages like "PM:
adding device nobus:yourmom", flip "Power Management Debugging" off
under the "Power management" menu also.  I wouldn't do this
preemptively, though -- it turns off other stuff too, and I think
Ubuntu's kernel is patched not to do that (and newer kernels have the
options separated, I think).

    Flipping the option and building a new package is pretty quick --
it doesn't rebuild much.
--
Joseph Fannin
jfannin@gmail.com || jhf@columbus.rr.com


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

* Re: Size of kernel modules
  2007-06-06 15:05 Size of kernel modules Christoph Pleger
                   ` (3 preceding siblings ...)
  2007-06-06 18:40 ` Joseph Fannin
@ 2007-06-08  3:44 ` Kyle McMartin
  2007-06-08 12:40   ` Robert P. J. Day
  4 siblings, 1 reply; 16+ messages in thread
From: Kyle McMartin @ 2007-06-08  3:44 UTC (permalink / raw)
  To: Christoph Pleger; +Cc: linux-kernel

On Wed, Jun 06, 2007 at 05:05:34PM +0200, Christoph Pleger wrote:
> So, my question is the follwing: Is it an expected feature that the file
> sizes of modules grow so much only because of a different cpu type and a
> different localversion, or is there probably a bug in my build tools?
> 

The kernel is compiled with debug info so that we can strip it later to
build two packages, one with debugging information intact, and one
without it.

If you disable CONFIG_DEBUG_KERNEL, things should go back to normal
sizes for you.

Regards,
	Kyle M.

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

* Re: Size of kernel modules
  2007-06-08  3:44 ` Kyle McMartin
@ 2007-06-08 12:40   ` Robert P. J. Day
  2007-06-08 18:59     ` Chuck Ebbert
  2007-06-09  7:55     ` Jan Engelhardt
  0 siblings, 2 replies; 16+ messages in thread
From: Robert P. J. Day @ 2007-06-08 12:40 UTC (permalink / raw)
  To: Kyle McMartin; +Cc: Christoph Pleger, linux-kernel

On Thu, 7 Jun 2007, Kyle McMartin wrote:

> On Wed, Jun 06, 2007 at 05:05:34PM +0200, Christoph Pleger wrote:
> > So, my question is the follwing: Is it an expected feature that the file
> > sizes of modules grow so much only because of a different cpu type and a
> > different localversion, or is there probably a bug in my build tools?
>
> The kernel is compiled with debug info so that we can strip it later to
> build two packages, one with debugging information intact, and one
> without it.
>
> If you disable CONFIG_DEBUG_KERNEL, things should go back to normal
> sizes for you.

grow so much compared to *which other modules*?  the ones that came
with your distro?  if that's the case, try installing your new modules
with

  # make INSTALL_MOD_STRIP=1 modules_install

that makes a *huge* difference in the size of the installed modules,
as i learned when i first ran across this on my fedora core system.

rday
--
========================================================================
Robert P. J. Day
Linux Consulting, Training and Annoying Kernel Pedantry
Waterloo, Ontario, CANADA

http://fsdev.net/wiki/index.php?title=Main_Page
========================================================================

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

* Re: Size of kernel modules
  2007-06-08 12:40   ` Robert P. J. Day
@ 2007-06-08 18:59     ` Chuck Ebbert
  2007-06-09  7:55     ` Jan Engelhardt
  1 sibling, 0 replies; 16+ messages in thread
From: Chuck Ebbert @ 2007-06-08 18:59 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Kyle McMartin, Christoph Pleger, linux-kernel

On 06/08/2007 08:40 AM, Robert P. J. Day wrote:
> 
>   # make INSTALL_MOD_STRIP=1 modules_install
> 
> that makes a *huge* difference in the size of the installed modules,
> as i learned when i first ran across this on my fedora core system.
> 

learn how to use rpmbuild:

http://fedoraproject.org/wiki/Docs/CustomKernel

You can use --with/--without to build only what you want.
See the top of the specfile for details.

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

* Re: Size of kernel modules
  2007-06-08 12:40   ` Robert P. J. Day
  2007-06-08 18:59     ` Chuck Ebbert
@ 2007-06-09  7:55     ` Jan Engelhardt
  2007-06-09 12:08       ` Jon Masters
  1 sibling, 1 reply; 16+ messages in thread
From: Jan Engelhardt @ 2007-06-09  7:55 UTC (permalink / raw)
  To: Robert P. J. Day
  Cc: Kyle McMartin, Christoph Pleger, Linux Kernel Mailing List,
	jonathan


On Jun 8 2007 08:40, Robert P. J. Day wrote:
>>
>> If you disable CONFIG_DEBUG_KERNEL, things should go back to normal
>> sizes for you.
>
>grow so much compared to *which other modules*?  the ones that came
>with your distro?  if that's the case, try installing your new modules
>with
>
>  # make INSTALL_MOD_STRIP=1 modules_install
>
>that makes a *huge* difference in the size of the installed modules,
>as i learned when i first ran across this on my fedora core system.

Definitely. Running depmod on debug-enabled .ko files explodes in a segfault
after depmod allocates more and more and more memory (exhausting both 
my ram and swap).


	Jan
-- 

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

* Re: Size of kernel modules
  2007-06-09  7:55     ` Jan Engelhardt
@ 2007-06-09 12:08       ` Jon Masters
  2007-06-09 13:59         ` Jan Engelhardt
  0 siblings, 1 reply; 16+ messages in thread
From: Jon Masters @ 2007-06-09 12:08 UTC (permalink / raw)
  To: Jan Engelhardt
  Cc: Robert P. J. Day, Kyle McMartin, Christoph Pleger,
	Linux Kernel Mailing List

On Sat, 2007-06-09 at 09:55 +0200, Jan Engelhardt wrote:
> On Jun 8 2007 08:40, Robert P. J. Day wrote:
> >>
> >> If you disable CONFIG_DEBUG_KERNEL, things should go back to normal
> >> sizes for you.
> >
> >grow so much compared to *which other modules*?  the ones that came
> >with your distro?  if that's the case, try installing your new modules
> >with
> >
> >  # make INSTALL_MOD_STRIP=1 modules_install
> >
> >that makes a *huge* difference in the size of the installed modules,
> >as i learned when i first ran across this on my fedora core system.
> 
> Definitely. Running depmod on debug-enabled .ko files explodes in a segfault
> after depmod allocates more and more and more memory (exhausting both 
> my ram and swap).

So I missed half of this conversation - you're saying that on a
CONFIG_DEBUG_KERNEL, you have such large .ko module files that depmod
segfaults? Can I get a core dump or any further information? :-)

Jon.



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

* Re: Size of kernel modules
  2007-06-09 12:08       ` Jon Masters
@ 2007-06-09 13:59         ` Jan Engelhardt
  2007-06-09 16:14           ` Jon Masters
                             ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Jan Engelhardt @ 2007-06-09 13:59 UTC (permalink / raw)
  To: Jon Masters
  Cc: Robert P. J. Day, Kyle McMartin, Christoph Pleger,
	Linux Kernel Mailing List


On Jun 9 2007 08:08, Jon Masters wrote:
>
>So I missed half of this conversation - you're saying that on a
>CONFIG_DEBUG_KERNEL, you have such large .ko module files that depmod
>segfaults? Can I get a core dump or any further information? :-)

Just make sure your /lib/modules/<kernel> is like 300 megabytes or even
more. Then depmod will clog up quite a lot memory already. (Taking a 256 mb ram
machine for example, no swap or just very little.)


	Jan
-- 

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

* Re: Size of kernel modules
  2007-06-09 13:59         ` Jan Engelhardt
@ 2007-06-09 16:14           ` Jon Masters
  2007-06-09 18:56           ` Satyam Sharma
  2007-06-10 13:13           ` Sergey Vlasov
  2 siblings, 0 replies; 16+ messages in thread
From: Jon Masters @ 2007-06-09 16:14 UTC (permalink / raw)
  To: Jan Engelhardt
  Cc: Robert P. J. Day, Kyle McMartin, Christoph Pleger,
	Linux Kernel Mailing List

On Sat, 2007-06-09 at 15:59 +0200, Jan Engelhardt wrote:
> On Jun 9 2007 08:08, Jon Masters wrote:
> >
> >So I missed half of this conversation - you're saying that on a
> >CONFIG_DEBUG_KERNEL, you have such large .ko module files that depmod
> >segfaults? Can I get a core dump or any further information? :-)
> 
> Just make sure your /lib/modules/<kernel> is like 300 megabytes or even
> more. Then depmod will clog up quite a lot memory already. (Taking a 256 mb ram
> machine for example, no swap or just very little.)

I'll go take a look at that.

Jon.



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

* Re: Size of kernel modules
  2007-06-09 13:59         ` Jan Engelhardt
  2007-06-09 16:14           ` Jon Masters
@ 2007-06-09 18:56           ` Satyam Sharma
  2007-06-10 13:13           ` Sergey Vlasov
  2 siblings, 0 replies; 16+ messages in thread
From: Satyam Sharma @ 2007-06-09 18:56 UTC (permalink / raw)
  To: Jan Engelhardt
  Cc: Jon Masters, Robert P. J. Day, Kyle McMartin, Christoph Pleger,
	Linux Kernel Mailing List

On 6/9/07, Jan Engelhardt <jengelh@computergmbh.de> wrote:
>
> On Jun 9 2007 08:08, Jon Masters wrote:
> >
> >So I missed half of this conversation - you're saying that on a
> >CONFIG_DEBUG_KERNEL, you have such large .ko module files that depmod
> >segfaults? Can I get a core dump or any further information? :-)
>
> Just make sure your /lib/modules/<kernel> is like 300 megabytes or even
> more. Then depmod will clog up quite a lot memory already. (Taking a 256 mb ram
> machine for example, no swap or just very little.)

Yup, this would happen reproducibly on a machine with <= 256MB
RAM and swap disabled, when building a large enough modular kernel.
The depmod at end of modules_install would invariably invoke the OOM
killer, and get itself shot (taking down the shell with it, often) ...

Satyam

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

* Re: Size of kernel modules
  2007-06-09 13:59         ` Jan Engelhardt
  2007-06-09 16:14           ` Jon Masters
  2007-06-09 18:56           ` Satyam Sharma
@ 2007-06-10 13:13           ` Sergey Vlasov
  2 siblings, 0 replies; 16+ messages in thread
From: Sergey Vlasov @ 2007-06-10 13:13 UTC (permalink / raw)
  To: Jan Engelhardt
  Cc: Jon Masters, Robert P. J. Day, Kyle McMartin, Christoph Pleger,
	Linux Kernel Mailing List

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

On Sat, 9 Jun 2007 15:59:55 +0200 (CEST) Jan Engelhardt wrote:

> On Jun 9 2007 08:08, Jon Masters wrote:
> >
> >So I missed half of this conversation - you're saying that on a
> >CONFIG_DEBUG_KERNEL, you have such large .ko module files that depmod
> >segfaults? Can I get a core dump or any further information? :-)
>
> Just make sure your /lib/modules/<kernel> is like 300 megabytes or
> even more. Then depmod will clog up quite a lot memory already.
> (Taking a 256 mb ram machine for example, no swap or just very
> little.)

I have noticed such problems before - the depmod code just loads whole
module files into memory.  The situation is especially bad when
module-init-tools is configured with --enable-zlib - in this case memory
for all module files is allocated with malloc().  (Without --enable-zlib
depmod just mmaps all module files, which at least does not eat swap,
and probably does not bring unused pages into memory.)

I have made some patches to module-init-tools - unfortunately, they
probably don't apply to the current version (they were based on
v3.3-pre4):

git://git.altlinux.org/people/vsu/packages/module-init-tools.git
(release-module-data branch)

http://git.altlinux.org/people/vsu/packages/?p=module-init-tools.git;a=shortlog;h=release-module-data

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

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

end of thread, other threads:[~2007-06-10 13:42 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-06 15:05 Size of kernel modules Christoph Pleger
2007-06-06 15:51 ` Jesper Juhl
2007-06-06 16:56   ` Jan Engelhardt
2007-06-06 17:17   ` Sam Ravnborg
2007-06-06 15:59 ` jimmy bahuleyan
2007-06-06 17:22 ` Sam Ravnborg
2007-06-06 18:40 ` Joseph Fannin
2007-06-08  3:44 ` Kyle McMartin
2007-06-08 12:40   ` Robert P. J. Day
2007-06-08 18:59     ` Chuck Ebbert
2007-06-09  7:55     ` Jan Engelhardt
2007-06-09 12:08       ` Jon Masters
2007-06-09 13:59         ` Jan Engelhardt
2007-06-09 16:14           ` Jon Masters
2007-06-09 18:56           ` Satyam Sharma
2007-06-10 13:13           ` Sergey Vlasov

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