All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
       [not found] <2flhcyrq2nr.fsf@saruman.uio.no>
@ 2006-09-28 19:47 ` Mattia Dongili
  2006-09-28 20:19   ` Petter Reinholdtsen
                     ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Mattia Dongili @ 2006-09-28 19:47 UTC (permalink / raw)
  To: Petter Reinholdtsen
  Cc: User Mode Linux Maintainers, pkg-sysvinit-devel, Paolo Giarrusso,
	UML-devel

Thanks Petter for writing, 
I was going to followup to the sysvinit bug :)

I'm Cc-ing upstream too.

On Thu, Sep 28, 2006 at 08:14:32PM +0200, Petter Reinholdtsen wrote:
> 
> Hi
> 
> I am one of the sysvinit maintainers.  Recently we changed the mount
> options of /dev/shm/, and got a bug report about uml refusing to start
> (#386945).  Because of this, I am curious how uml uses /dev/shm/.  Is
> it using the shm-functions in glibc, or something else?  Please
> explain how it work.

I don't think it uses shm* functions, as far as I can tell the /dev/shm
location is sensible to $TMP, $TEMP or $TEMPDIR, thus changing one of
them to a different location goes farther than what's reported in the
bureport:

$ TMPDIR=./TMP linux ubd0=rootfs_debian-sid.172.20.0.20 ubd1=swap-172.20.0.20 eth0=tuntap,,,172.20.0.19 umid=debian mem=128
Checking that ptrace can change system call numbers...OK
Checking syscall emulation patch for ptrace...OK
Checking advanced syscall emulation patch for ptrace...OK
Checking for tmpfs mount on /dev/shm...OK
Checking PROT_EXEC mmap in ./TMP/...OK
Checking for the skas3 patch in the host:
  - /proc/mm...not found
  - PTRACE_FAULTINFO...not found
  - PTRACE_LDT...not found
UML running in SKAS0 mode
Mapping memory: Cannot allocate memory

Don't know now, it's maybe easy to fix, there's a nice global variable
set to "/dev/shm" in arch/um/os-Linux/mem.c and UML uses mkstemp() to
create files.

> To make some writable tmpfs available to those in need of such system,
> and to avoid using /dev/shm/ which is reserved for the shm-functions,
> I just uploaded sysvinit version 2.86.ds1-26.  It will mount a tmpfs
> on /lib/init/rw/ that can be used instead.  If /lib/init/rw/.ramfs
> exist, that mount point is a tmpfs.  I'm not sure if this last change
> will make it into Etch or not, but I hope so, to solve any problems
> with packages previously using /dev/shm/ as a generic tmpfs file
> system.

Well, I'd actually prefer if you could remove the noexec flag from
/dev/shm. I understand the security reasons given in the bugreport but
I'd prefer avoid having to deal with one more Debian-only (is it?)
thing given the soon to come general freeze. 

Thanks
-- 
mattia
:wq!

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
  2006-09-28 19:47 ` [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/? Mattia Dongili
@ 2006-09-28 20:19   ` Petter Reinholdtsen
  2006-09-29  7:17     ` Mattia Dongili
  2006-09-28 21:51   ` Jeff Dike
  2006-09-30 12:36   ` Blaisorblade
  2 siblings, 1 reply; 9+ messages in thread
From: Petter Reinholdtsen @ 2006-09-28 20:19 UTC (permalink / raw)
  To: Mattia Dongili
  Cc: User Mode Linux Maintainers, pkg-sysvinit-devel, Paolo Giarrusso,
	UML-devel

[Mattia Dongili]
> Well, I'd actually prefer if you could remove the noexec flag from
> /dev/shm. I understand the security reasons given in the bugreport
> but I'd prefer avoid having to deal with one more Debian-only (is
> it?)  thing given the soon to come general freeze.

I am considering this for etch only, and to reinsert it once etch is
released.  I suspect it is better to break uml, dosemu and others
misusing /dev/shm/ early in the etch+1 release cycle instead of late
in the etch cycle.

But I might be too late, as base and sysvinit is already frozen,
according to the email from Andreas. :( We will have to discuss it
with the release managers, I guess.

Friendly,
-- 
Petter Reinholdtsen

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
  2006-09-28 19:47 ` [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/? Mattia Dongili
  2006-09-28 20:19   ` Petter Reinholdtsen
@ 2006-09-28 21:51   ` Jeff Dike
  2006-09-29 17:46     ` Mattia Dongili
  2006-09-30 12:36   ` Blaisorblade
  2 siblings, 1 reply; 9+ messages in thread
From: Jeff Dike @ 2006-09-28 21:51 UTC (permalink / raw)
  To: Mattia Dongili
  Cc: User Mode Linux Maintainers, pkg-sysvinit-devel, Paolo Giarrusso,
	UML-devel, Petter Reinholdtsen

On Thu, Sep 28, 2006 at 09:47:27PM +0200, Mattia Dongili wrote:
> On Thu, Sep 28, 2006 at 08:14:32PM +0200, Petter Reinholdtsen wrote:
> > To make some writable tmpfs available to those in need of such system,
> > and to avoid using /dev/shm/ which is reserved for the shm-functions,
> > I just uploaded sysvinit version 2.86.ds1-26.  It will mount a tmpfs
> > on /lib/init/rw/ that can be used instead.  If /lib/init/rw/.ramfs
> > exist, that mount point is a tmpfs.  I'm not sure if this last change
> > will make it into Etch or not, but I hope so, to solve any problems
> > with packages previously using /dev/shm/ as a generic tmpfs file
> > system.
> 
> Well, I'd actually prefer if you could remove the noexec flag from
> /dev/shm. I understand the security reasons given in the bugreport but
> I'd prefer avoid having to deal with one more Debian-only (is it?)
> thing given the soon to come general freeze. 

UML needs a non-noexec place to keep a file that will be used as its
physical memory.  A tmpfs mount is greatly preferred for performance
reasons as well as tmpfs being the only filesystem supporting
MADV_REMOVE, which is used for memory hotplug.

				Jeff

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
  2006-09-28 20:19   ` Petter Reinholdtsen
@ 2006-09-29  7:17     ` Mattia Dongili
  0 siblings, 0 replies; 9+ messages in thread
From: Mattia Dongili @ 2006-09-29  7:17 UTC (permalink / raw)
  To: Petter Reinholdtsen
  Cc: User Mode Linux Maintainers, Mattia Dongili, Paolo Giarrusso,
	pkg-sysvinit-devel, UML-devel

On Thu, September 28, 2006 10:19 pm, Petter Reinholdtsen said:
> [Mattia Dongili]
>> Well, I'd actually prefer if you could remove the noexec flag from
>> /dev/shm. I understand the security reasons given in the bugreport
>> but I'd prefer avoid having to deal with one more Debian-only (is
>> it?)  thing given the soon to come general freeze.
>
> I am considering this for etch only, and to reinsert it once etch is
> released.  I suspect it is better to break uml, dosemu and others
> misusing /dev/shm/ early in the etch+1 release cycle instead of late
> in the etch cycle.

absolutely seconded.

> But I might be too late, as base and sysvinit is already frozen,
> according to the email from Andreas. :( We will have to discuss it
> with the release managers, I guess.

I can still file a critical bug because sysvinit "breaks unrelated SW" :)
Let's submit the question to d-release then.

-- 
mattia
:wq!



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
  2006-09-28 21:51   ` Jeff Dike
@ 2006-09-29 17:46     ` Mattia Dongili
  2006-09-29 18:59       ` Jeff Dike
  2006-09-30 12:34       ` [uml-devel] " Blaisorblade
  0 siblings, 2 replies; 9+ messages in thread
From: Mattia Dongili @ 2006-09-29 17:46 UTC (permalink / raw)
  To: Jeff Dike
  Cc: User Mode Linux Maintainers, pkg-sysvinit-devel, Paolo Giarrusso,
	UML-devel, Petter Reinholdtsen

On Thu, Sep 28, 2006 at 05:51:43PM -0400, Jeff Dike wrote:
> On Thu, Sep 28, 2006 at 09:47:27PM +0200, Mattia Dongili wrote:
> > On Thu, Sep 28, 2006 at 08:14:32PM +0200, Petter Reinholdtsen wrote:
> > > To make some writable tmpfs available to those in need of such system,
> > > and to avoid using /dev/shm/ which is reserved for the shm-functions,
> > > I just uploaded sysvinit version 2.86.ds1-26.  It will mount a tmpfs
> > > on /lib/init/rw/ that can be used instead.  If /lib/init/rw/.ramfs
> > > exist, that mount point is a tmpfs.  I'm not sure if this last change
> > > will make it into Etch or not, but I hope so, to solve any problems
> > > with packages previously using /dev/shm/ as a generic tmpfs file
> > > system.
> > 
> > Well, I'd actually prefer if you could remove the noexec flag from
> > /dev/shm. I understand the security reasons given in the bugreport but
> > I'd prefer avoid having to deal with one more Debian-only (is it?)
> > thing given the soon to come general freeze. 
> 
> UML needs a non-noexec place to keep a file that will be used as its
> physical memory.  A tmpfs mount is greatly preferred for performance
> reasons as well as tmpfs being the only filesystem supporting
> MADV_REMOVE, which is used for memory hotplug.

Thinking of a Debian only fix for the above, does simply playing with
default_tmpdir in arch/um/os-Linux/mem.c (probably in which_tmpdir())
suffice to use /lib/init/rw/.ramfs as default?

(Yes I should try it... will try to find some time next week)

Thanks
-- 
mattia
:wq!

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
  2006-09-29 17:46     ` Mattia Dongili
@ 2006-09-29 18:59       ` Jeff Dike
  2006-09-29 19:52         ` [uml-devel] [Pkg-sysvinit-devel] " Henrique de Moraes Holschuh
  2006-09-30 12:34       ` [uml-devel] " Blaisorblade
  1 sibling, 1 reply; 9+ messages in thread
From: Jeff Dike @ 2006-09-29 18:59 UTC (permalink / raw)
  To: Mattia Dongili
  Cc: User Mode Linux Maintainers, pkg-sysvinit-devel, Paolo Giarrusso,
	UML-devel, Petter Reinholdtsen

On Fri, Sep 29, 2006 at 07:46:01PM +0200, Mattia Dongili wrote:
> Thinking of a Debian only fix for the above, does simply playing with
> default_tmpdir in arch/um/os-Linux/mem.c (probably in which_tmpdir())
> suffice to use /lib/init/rw/.ramfs as default?
> 
> (Yes I should try it... will try to find some time next week)

What difference would this make?  You still have some world-writable place
not mounted noexec that nasty people could try to take advantage of.  You're
just changing the name of that place.

				Jeff

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] [Pkg-sysvinit-devel] Re: [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
  2006-09-29 18:59       ` Jeff Dike
@ 2006-09-29 19:52         ` Henrique de Moraes Holschuh
  0 siblings, 0 replies; 9+ messages in thread
From: Henrique de Moraes Holschuh @ 2006-09-29 19:52 UTC (permalink / raw)
  To: Jeff Dike
  Cc: User Mode Linux Maintainers, Mattia Dongili, Paolo Giarrusso,
	pkg-sysvinit-devel, UML-devel

On Fri, 29 Sep 2006, Jeff Dike wrote:
> On Fri, Sep 29, 2006 at 07:46:01PM +0200, Mattia Dongili wrote:
> > Thinking of a Debian only fix for the above, does simply playing with
> > default_tmpdir in arch/um/os-Linux/mem.c (probably in which_tmpdir())
> > suffice to use /lib/init/rw/.ramfs as default?
> > 
> > (Yes I should try it... will try to find some time next week)
> 
> What difference would this make?  You still have some world-writable place
> not mounted noexec that nasty people could try to take advantage of.  You're
> just changing the name of that place.

It does not intrude in SYSV shm namespace anymore.

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
  2006-09-29 17:46     ` Mattia Dongili
  2006-09-29 18:59       ` Jeff Dike
@ 2006-09-30 12:34       ` Blaisorblade
  1 sibling, 0 replies; 9+ messages in thread
From: Blaisorblade @ 2006-09-30 12:34 UTC (permalink / raw)
  To: Mattia Dongili
  Cc: pkg-sysvinit-devel, Henrique de Moraes Holschuh, UML-devel,
	Jeff Dike, User Mode Linux Maintainers, Petter Reinholdtsen

On Friday 29 September 2006 19:46, Mattia Dongili wrote:
> On Thu, Sep 28, 2006 at 05:51:43PM -0400, Jeff Dike wrote:
> > On Thu, Sep 28, 2006 at 09:47:27PM +0200, Mattia Dongili wrote:
> > > On Thu, Sep 28, 2006 at 08:14:32PM +0200, Petter Reinholdtsen wrote:
> > > > To make some writable tmpfs available to those in need of such
> > > > system, and to avoid using /dev/shm/ which is reserved for the
> > > > shm-functions, I just uploaded sysvinit version 2.86.ds1-26.  It will
> > > > mount a tmpfs on /lib/init/rw/ that can be used instead.  If
> > > > /lib/init/rw/.ramfs exist, that mount point is a tmpfs.  I'm not sure
> > > > if this last change will make it into Etch or not, but I hope so, to
> > > > solve any problems with packages previously using /dev/shm/ as a
> > > > generic tmpfs file system.
> > >
> > > Well, I'd actually prefer if you could remove the noexec flag from
> > > /dev/shm. I understand the security reasons given in the bugreport but
> > > I'd prefer avoid having to deal with one more Debian-only (is it?)
> > > thing given the soon to come general freeze.
> >
> > UML needs a non-noexec place to keep a file that will be used as its
> > physical memory.  A tmpfs mount is greatly preferred for performance
> > reasons as well as tmpfs being the only filesystem supporting
> > MADV_REMOVE, which is used for memory hotplug.
>
> Thinking of a Debian only fix for the above, does simply playing with
> default_tmpdir in arch/um/os-Linux/mem.c (probably in which_tmpdir())
> suffice to use /lib/init/rw/.ramfs as default?
Is it world-writable with the sticky bit set as /tmp and /dev/shm? I do not 
know 

-- 
Inform me of my mistakes, so I can keep imitating Homer Simpson's "Doh!".
Paolo Giarrusso, aka Blaisorblade
http://www.user-mode-linux.org/~blaisorblade
Chiacchiera con i tuoi amici in tempo reale! 
 http://it.yahoo.com/mail_it/foot/*http://it.messenger.yahoo.com 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/?
  2006-09-28 19:47 ` [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/? Mattia Dongili
  2006-09-28 20:19   ` Petter Reinholdtsen
  2006-09-28 21:51   ` Jeff Dike
@ 2006-09-30 12:36   ` Blaisorblade
  2 siblings, 0 replies; 9+ messages in thread
From: Blaisorblade @ 2006-09-30 12:36 UTC (permalink / raw)
  To: Mattia Dongili
  Cc: User Mode Linux Maintainers, pkg-sysvinit-devel, UML-devel,
	Petter Reinholdtsen

On Thursday 28 September 2006 21:47, Mattia Dongili wrote:
> Thanks Petter for writing,
> I was going to followup to the sysvinit bug :)
>
> I'm Cc-ing upstream too.

> I don't think it uses shm* functions, as far as I can tell the /dev/shm
> location is sensible to $TMP, $TEMP or $TEMPDIR, thus changing one of
> them to a different location goes farther than what's reported in the
> bureport:

> $ TMPDIR=./TMP linux ubd0=rootfs_debian-sid.172.20.0.20
> ubd1=swap-172.20.0.20 eth0=tuntap,,,172.20.0.19 umid=debian mem=128
> Checking that ptrace can change system call numbers...OK
> Checking syscall emulation patch for ptrace...OK
> Checking advanced syscall emulation patch for ptrace...OK
> Checking for tmpfs mount on /dev/shm...OK
> Checking PROT_EXEC mmap in ./TMP/...OK
> Checking for the skas3 patch in the host:
>   - /proc/mm...not found
>   - PTRACE_FAULTINFO...not found
>   - PTRACE_LDT...not found
> UML running in SKAS0 mode
> Mapping memory: Cannot allocate memory

There is probably some additional bug here, it should be easy to fix.

> Don't know now, it's maybe easy to fix, there's a nice global variable
> set to "/dev/shm" in arch/um/os-Linux/mem.c and UML uses mkstemp() to
> create files.
>
> > To make some writable tmpfs available to those in need of such system,
> > and to avoid using /dev/shm/ which is reserved for the shm-functions,
> > I just uploaded sysvinit version 2.86.ds1-26.  It will mount a tmpfs
> > on /lib/init/rw/ that can be used instead.  If /lib/init/rw/.ramfs
> > exist, that mount point is a tmpfs.  I'm not sure if this last change
> > will make it into Etch or not, but I hope so, to solve any problems
> > with packages previously using /dev/shm/ as a generic tmpfs file
> > system.
>
> Well, I'd actually prefer if you could remove the noexec flag from
> /dev/shm. I understand the security reasons given in the bugreport but
> I'd prefer avoid having to deal with one more Debian-only (is it?)

It is not - it can happen on Gentoo too (actually, the issue there is simply 
that the manuals _recommend_ to use noexec for /dev/shm).

> thing given the soon to come general freeze.

As Jeff Dike explained, we just need to use an executable tmpfs mount. For a 
long time, we used /tmp and _suggested_ people to use tmpfs for it, or to use 
it elsewhere and point TMP there. And quite frankly, it would be nicer to 
make that a default (i.e. if /tmp is automatically a tmpfs mount, switching 
back there would be nice).

In 2.4 days, using tmpfs for /tmp was bad for one issue: you could not do a 
loopback mount from tmpfs, and this broke mkinitrd; but that has been solved 
since then, for 2.6 at least.
-- 
Inform me of my mistakes, so I can keep imitating Homer Simpson's "Doh!".
Paolo Giarrusso, aka Blaisorblade
http://www.user-mode-linux.org/~blaisorblade
Chiacchiera con i tuoi amici in tempo reale! 
 http://it.yahoo.com/mail_it/foot/*http://it.messenger.yahoo.com 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

end of thread, other threads:[~2006-09-30 12:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <2flhcyrq2nr.fsf@saruman.uio.no>
2006-09-28 19:47 ` [uml-devel] [Pkg-uml-pkgs] How is user-mode-linux using /dev/shm/? Mattia Dongili
2006-09-28 20:19   ` Petter Reinholdtsen
2006-09-29  7:17     ` Mattia Dongili
2006-09-28 21:51   ` Jeff Dike
2006-09-29 17:46     ` Mattia Dongili
2006-09-29 18:59       ` Jeff Dike
2006-09-29 19:52         ` [uml-devel] [Pkg-sysvinit-devel] " Henrique de Moraes Holschuh
2006-09-30 12:34       ` [uml-devel] " Blaisorblade
2006-09-30 12:36   ` Blaisorblade

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.