public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] Generalised Kernel Hooks Interface (GKHI)
@ 2000-11-08 20:31 richardj_moore
  2000-11-08 21:35 ` Michael Rothwell
  2000-11-13 21:56 ` Advanced Linux Kernel/Enterprise Linux Kernel Josue Emmanuel Amaro
  0 siblings, 2 replies; 69+ messages in thread
From: richardj_moore @ 2000-11-08 20:31 UTC (permalink / raw)
  To: linux-kernel



We've just release version 0.6 of Generalised Kernel Hooks Interface (GKHI)
see the IBM Linux Technology Centre's web page DProbes link:
http://oss.software.ibm.com/developerworks/opensource/linux

Some folks expressed an interest in this type of facility recently in
discussions concerning making call-backs from the kernel to kernel modules.

Here's the abstract for this facility. With this intend to modularise our
RAS offerings, in particular DProbes, so that they can be applied
dynamically without having to be carried as excess baggage.

Abstract:
Generalised Kernel Hooks Interface (GKHI) is a generalised facility for
placing hooks or exits in arbitrary kernel locations. It enables many
kernel enhancements, which are  otherwise self-contained, to become
loadable kernel modules and retain a substantial degree of independence
from the kernel source. This affords advantages for maintenance and
co-existence with other kernel enhancements. The hook interface allows
multiple kernel modules to register their exits for a given hook, in order
to receive control at that hook location. Multiple hooks may be defined
within the kernel and a singe kernel module may register exits to use
multiple hooks.  When hook exits register they may specify co-existence
criteria. Hooks may be placed in kernel modules as well as the kernel
itself with the proviso that the modules with hooks are loaded before the
gkhi hook interfacing module. A hook exit receives control as if called
from the code in which the hook is located. Parameters may be passed to a
hook exit and may be modified by an exit. For more information down-load
the tarball.

Note: GHKI is in late beta test - we currently do not support SMP, that
will occur soon. We also plan to support dynamic hook definition as little
later on so that kernel modules may dynamically register hooks for other
kernel modules to use.


Richard Moore -  RAS Project Lead - Linux Technology Centre (PISC).

http://oss.software.ibm.com/developerworks/opensource/linux
Office: (+44) (0)1962-817072, Mobile: (+44) (0)7768-298183
IBM UK Ltd,  MP135 Galileo Centre, Hursley Park, Winchester, SO21 2JN, UK


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 69+ messages in thread
* Re: Advanced Linux Kernel/Enterprise Linux Kernel
@ 2000-11-14 14:59 Jesse Pollard
  2000-11-14 15:47 ` David Weinehall
                   ` (2 more replies)
  0 siblings, 3 replies; 69+ messages in thread
From: Jesse Pollard @ 2000-11-14 14:59 UTC (permalink / raw)
  To: Josue.Amaro, linux-kernel

Josue Emmanuel Amaro <Josue.Amaro@oracle.com>:
> This subject came up in the Generalized Kernel Hooks Interface thread, since it
> is an area of interest to me I wanted to continue that conversation.
> 
> While I do not think it would be productive to enter a discussion whether there
> is a need to fork the kernel to add features that would be beneficial to
> mission/business critical applications, I am curious as to what are the features
> that people consider important to have.  By mission critical I mean systems that
> if not functional bring a business to a halt, while by business critical I mean
> systems that affect a division of a business.
>
> Another problem is how people define Enterprise Systems.  Many base it on the
> definitions that go back to S390 systems, others in the context of the 24/7
> nature of the internet.  That would also be a healthy discussion to have.
> 
> At Oracle we are primarily interested on I/O subsystem features and memory
> management.  (For anyone that knows anything about Oracle this should not come
> as a surprise, although I am pretty sure that any database vendor/developer
> would be interested on those features as well.)

I reformatted/phrased your questions above to allow for separate answers:

Q1. How do you define Enterprise Systems? Many base it on the definitions that
    go back to S390 systems, others in the context of the 24/7 nature of the
    internet.

1. The system should be available 24 hours a day, 7 days a week, 52 weeks a
   year :-), with time off for scheduled down time for maintenance and
   upgrades.

2. It should be possible to take down a node of a cluster without affecting
   the effectiveness of the other nodes. There is an expeced higher load on
   the remaining nodes during the time the node is missing.
3. It should be possible to add nodes to a cluster without affecting the
   effectiveness of the other nodes.

4. Unauthorized access to, modification to, or damage to the effectiveness of
   the system should be possible (the ideal...). All security related events
   should be audited and logged.

Q2. I am curious as to what are the features that people consider important to
    have.  By mission critical I mean systems that if not functional bring a
    business to a halt, while by business critical I mean systems that affect
    a division of a business.

1. Secure - Multi-level security (with compartmentalization) is needed to
   be able to detect unauthorized attempts to modify the system. There should
   be no all powerfull user. System updates should require three different
   authorizations (security, administrator, and auditor) to take effect when
   the system is on-line. All bets are off, of course, if the system is taken
   offline for such modifications - at that point, the administrator would
   be able to make any changes. The security administrator should validate
   the system in some manner. The system should not be able to be brought
   online without being validated.

   IPSec to provide controled encryption between hosts. Inclusion of CIPSO
   style extensions to allow for labeled network support. Virtical integration
   to include user identification tags as well. I would like to be able to
   identify the remote user, with confidence in that identity established
   by the confidence in the host, which is in turn established by IPSec.

   I (meaning me) would like the ability to audit every system call. (yes,
   this is horrendous, if everything is logged, but I want to be able to
   choose how much is logged at the source of the data, rather than at
   the destination. That would reduce the total data flood to what is
   manageable or desired.

   I realize that this is extreme - but in some environments this degree of
   control is necessary. It should be possible to downgrade this level of
   control to the point that is required for other environments.

2. Allow for full accounting of user resources - memory, cpu, disk, IO.

3. It should not be possible for a user to exceed the resource quotas
   established for the user. This control should be flexible enough to allow
   for exceeding some quotas if additional resources are available, but
   unused. (I'm considering memory resources and CPU time here. The user
   should be able to exceed memory quota, but with the understanding that
   the users processes will be trimmed down to the users quota limit if
   needed for other users.

4. Batch jobs, using a more common definition of batch than that used by
   the "batch" utility - job queues, with batch controled limits, job
   checkpointing/restart, resource allocation controls... Batch jobs
   should be able to migrate to other nodes/systems (as long as all other
   required resources are available ... This is HARD to do :-).

5. Allow for multiple scheduling types, preferably concurrently, but changable
   at runtime. Some real time, mostly batch and interactive.

-------------------------------------------------------------------------
Jesse I Pollard, II
Email: pollard@navo.hpc.mil

Any opinions expressed are solely my own.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 69+ messages in thread
* RE: Advanced Linux Kernel/Enterprise Linux Kernel
@ 2000-11-14 18:03 Marty Fouts
  0 siblings, 0 replies; 69+ messages in thread
From: Marty Fouts @ 2000-11-14 18:03 UTC (permalink / raw)
  To: 'root@chaos.analogic.com', Michael Rothwell; +Cc: Linux kernel

Sorry, wrong answer, but thanks for playing.

When Multics was developed, (early 60s,) DEC equipment wasn't even
interesting to much of an audience.  The original equipment Multics ran on
was build by one of the "seven dwarf" computer companies, (GE) which was
soon to get out of the computer business altogether.

I would suggest Organick's book, if I could recall the title.

Marty

-----Original Message-----
From: Richard B. Johnson [mailto:root@chaos.analogic.com]
Sent: Tuesday, November 14, 2000 8:42 AM
To: Michael Rothwell
Cc: Linux kernel
Subject: Re: Advanced Linux Kernel/Enterprise Linux Kernel


On Tue, 14 Nov 2000, Michael Rothwell wrote:

> "Richard B. Johnson" wrote:
> > Multics???  [..] way too many persons on this list who know the history
of
> > Unix to try this BS.
> 
> So, you're saying their nine goals were bullshit? Multics had a lot of
> problems. But it did a lot of ground-breaking. Perhaps you should reply
> to the nine goals, or the general topic of "Enterpriseness," rather than
> merely express your irrelevant hatred for Multics.
>

Relating some "nine goals of 'Enterprise Computing'" to Multics is
the bullshit. When Multics was being developed, the singular goal
was to make an operating system that worked on DEC Equipment without
having to use DEC software. The emphasis was on trying to make it
work period.


Cheers,
Dick Johnson

Penguin : Linux version 2.4.0 on an i686 machine (799.54 BogoMips).

"Memory is like gasoline. You use it up when you are running. Of
course you get it all back when you reboot..."; Actual explanation
obtained from the Micro$oft help desk.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 69+ messages in thread
* RE: Advanced Linux Kernel/Enterprise Linux Kernel
@ 2000-11-14 18:06 Marty Fouts
  0 siblings, 0 replies; 69+ messages in thread
From: Marty Fouts @ 2000-11-14 18:06 UTC (permalink / raw)
  To: 'root@chaos.analogic.com', Michael Rothwell; +Cc: Linux kernel

Sorry, wrong answer, but thanks for playing.  Multics was not abandoned as
unusable, and was, in fact, widely used, sometimes in what would now be
called "mission critical" applications, for a long time. While Honeywell
finally stopped supporting Multics sometime in the 90s, I was surprised and
delighted to find that there are still Multics systems running.

There may be many people on this list who know the history of Unix, but from
this thread, I'm thinking that perhaps there is some confusion between the
history and the mythology.

Perhaps we could get AT&T, Lucent, or whomever owns the copyright these
days, to reprint the "Unix" issue of the Bell Systems Journal.

Marty

-----Original Message-----
From: Richard B. Johnson [mailto:root@chaos.analogic.com]
Sent: Tuesday, November 14, 2000 8:26 AM
To: Michael Rothwell
Cc: Linux kernel
Subject: Re: Advanced Linux Kernel/Enterprise Linux Kernel


On Tue, 14 Nov 2000, Michael Rothwell wrote:

> One historically significant "Enterprise" OS is Multics. It had nine
> major goals. Perhaps we should think about how Linux measures up to
> these 1965 goals for "Enterprise Computing."
>

Multics???  No way. It was abandoned as unusable and part of the
kernel code, basically the boot loader, was modified to become
part of Unix.

You have way too many persons on this list who know the history of
Unix to try this BS.

Cheers,
Dick Johnson

Penguin : Linux version 2.4.0 on an i686 machine (799.54 BogoMips).

"Memory is like gasoline. You use it up when you are running. Of
course you get it all back when you reboot..."; Actual explanation
obtained from the Micro$oft help desk.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 69+ messages in thread
* RE: Advanced Linux Kernel/Enterprise Linux Kernel
@ 2000-11-14 18:10 Marty Fouts
  2000-11-14 19:43 ` Steve VanDevender
  0 siblings, 1 reply; 69+ messages in thread
From: Marty Fouts @ 2000-11-14 18:10 UTC (permalink / raw)
  To: 'root@chaos.analogic.com', Michael Rothwell; +Cc: Linux kernel

Actually, you have the sequence of events slightly out of order.  AT&T,
specifically Bell Labs, was one of the participants in the program that
would develop Multics. AT&T opted out of the program, for various reasons,
but it continued apace.  The PDP-8 of fame was one that, according to
Thompson, happened to be available and unused.

-----Original Message-----
From: Richard B. Johnson [mailto:root@chaos.analogic.com]
Sent: Tuesday, November 14, 2000 10:01 AM
To: Michael Rothwell
Cc: Linux kernel
Subject: Re: Advanced Linux Kernel/Enterprise Linux Kernel


On Tue, 14 Nov 2000, Michael Rothwell wrote:

> "Richard B. Johnson" wrote:
> 
> > Relating some "nine goals of 'Enterprise Computing'" to Multics is
> > the bullshit. 
> 
> Funny, I got those off the "Multics FAQ" page.
> 
> -M
> 


History is being rewritten. When Multics was being developed by AT&T,
it was found to be unusable on the DEC. It was a PDP-8, so the
story is told.  General Electric got the first contract to make
a machine specifically designed for Multics and development
continued.

The original DEC was "given" to W. M. Ritchie and his staff in
"Department 58213". He wanted to use it for games. To do so, required
him to write some sort of OS, which became Unix.

As I said, when Multics was designed, the only criteria as to
get it to work on a DEC. It didn't. To use this development as
an example of "enterprise computing" is absurd and belies its
well documented history.


Cheers,
Dick Johnson

Penguin : Linux version 2.4.0 on an i686 machine (799.54 BogoMips).

"Memory is like gasoline. You use it up when you are running. Of
course you get it all back when you reboot..."; Actual explanation
obtained from the Micro$oft help desk.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 69+ messages in thread
* RE: Advanced Linux Kernel/Enterprise Linux Kernel
@ 2000-11-14 18:18 Marty Fouts
  0 siblings, 0 replies; 69+ messages in thread
From: Marty Fouts @ 2000-11-14 18:18 UTC (permalink / raw)
  To: 'root@chaos.analogic.com', Michael Rothwell; +Cc: Linux kernel


Dick Johnson wrote:

> The original DEC was "given" to W. M. Ritchie and his staff in
> "Department 58213". He wanted to use it for games. To do so, required
> him to write some sort of OS, which became Unix.

A typo, I assume.  That's D(ennis) Ritchie.

> As I said, when Multics was designed, the only criteria as to
> get it to work on a DEC. It didn't. To use this development as
> an example of "enterprise computing" is absurd and belies its
> well documented history.

How odd then, that Corbato's '65 paper specifically describes it as a
research effort on a GE system, and both Ritchie and Thompson have written
to similar effect and Glasser et al wrote 

In the late spring and early summer of 1964 it became obvious that greater
facility in the computing system was required if time-sharing techniques
were to move from the state of an interesting pilot experiment into that of
a useful prototype for remote access computer systems. Investigation proved
computers that were immediately available could not be adapted readily to
meet the difficult set of requirements time-sharing places on any machine.
However, there was one system that appeared to be extendible into what was
desired. This machine was the General Electric 635.

Multics grew out of research into the design of timesharing systems at MIT,
and is from the same family of systems as ITS.  It had a long and
interesting history and was supported by Honeywell into the 90s.

There were several other interesting OSes developed in that time frame, such
as SDS's CP/V for the Sigma series, but most of them were not described in
the literature and so are long forgotten.

Marty
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 69+ messages in thread
* RE: Advanced Linux Kernel/Enterprise Linux Kernel
@ 2000-11-14 18:20 Marty Fouts
  0 siblings, 0 replies; 69+ messages in thread
From: Marty Fouts @ 2000-11-14 18:20 UTC (permalink / raw)
  To: 'Buddha Buck', Michael Rothwell, root; +Cc: Linux kernel

I would agree that Multics probably wouldn't qualify as a platform for
enterprise computing these days, but it is interesting to examine the 9
stated goals, and see how they relate to enterprise computing.  They are
applicable goals, although they certainly don't qualify as the only set, and
could well be expanded given what has been learned in the 35 years since.

Marty

-----Original Message-----
From: Buddha Buck [mailto:bmbuck@14850.com]
Sent: Tuesday, November 14, 2000 9:52 AM
To: Michael Rothwell; root@chaos.analogic.com
Cc: Linux kernel
Subject: Re: Advanced Linux Kernel/Enterprise Linux Kernel


At 01:10 PM 11/14/00 -0500, Michael Rothwell wrote:
>"Richard B. Johnson" wrote:
>
> > Relating some "nine goals of 'Enterprise Computing'" to Multics is
> > the bullshit.
>
>Funny, I got those off the "Multics FAQ" page.

It may be reasonable to question them as "goals of 'Enterprise Computing'".

I found, on http://www.multicians.org/general.html, a list of those same 
nine goals, introduced by the sentence "As described in the 1965 paper 
Introduction and Overview of the Multics System by Corbató and Vyssotsky, 
there were nine major goals for Multics:"

While those were the goals of Multics, it is not at all clear that Multics 
would classify these days as a platform for "Enterprise Computing".  I'll 
note that the word "enterprise" does not appear in either the general FAQ 
page I cited, nor in the linked article it cites.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 69+ messages in thread
* RE: Advanced Linux Kernel/Enterprise Linux Kernel
@ 2000-11-15  4:19 Marty Fouts
  0 siblings, 0 replies; 69+ messages in thread
From: Marty Fouts @ 2000-11-15  4:19 UTC (permalink / raw)
  To: 'Steve VanDevender'
  Cc: 'root@chaos.analogic.com', Michael Rothwell, Linux kernel

Er, um, yes.  I stand corrected.


-----Original Message-----
From: Steve VanDevender [mailto:stevev@efn.org]
Sent: Tuesday, November 14, 2000 11:44 AM
To: Marty Fouts
Cc: 'root@chaos.analogic.com'; Michael Rothwell; Linux kernel
Subject: RE: Advanced Linux Kernel/Enterprise Linux Kernel


Marty Fouts writes:
 > Actually, you have the sequence of events slightly out of order.  AT&T,
 > specifically Bell Labs, was one of the participants in the program that
 > would develop Multics. AT&T opted out of the program, for various
reasons,
 > but it continued apace.  The PDP-8 of fame was one that, according to
 > Thompson, happened to be available and unused.

The original system on which UNIX development started was not a PDP-8,
but a PDP-7.  The earliest UNIX was also written in assembler.  Thompson
and Ritchie developed C as a higher-level implementation language during
the process of porting UNIX from the PDP-7 to the PDP-11.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 69+ messages in thread
* Re: Advanced Linux Kernel/Enterprise Linux Kernel
@ 2000-11-17  5:28 Bernd Eckenfels
  0 siblings, 0 replies; 69+ messages in thread
From: Bernd Eckenfels @ 2000-11-17  5:28 UTC (permalink / raw)
  To: linux-kernel

In article <20001114084949.C723@marowsky-bree.de> you wrote:
> But also scalability: 2TB is a problem for me in some cases, 32bit just don't
> cut it all the time - but I need to circumvent the storage problem even on a
> 32bit system. And adding disks to the system while running is desireable.

Why do you run 32bit Systems in the First Place? This can solve a lot of
flaky PC Hardware Issues, too... (also it does not help in Hotplug PCI and
CPU).

Greetings
Bernd
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

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

end of thread, other threads:[~2000-11-20 23:06 UTC | newest]

Thread overview: 69+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-11-08 20:31 [ANNOUNCE] Generalised Kernel Hooks Interface (GKHI) richardj_moore
2000-11-08 21:35 ` Michael Rothwell
2000-11-09  7:44   ` Christoph Rohland
2000-11-09  7:53     ` Larry McVoy
2000-11-09  8:08       ` Andre Hedrick
2000-11-09  8:43       ` Christoph Rohland
2000-11-09 12:20         ` Michael Rothwell
2000-11-09 12:31           ` Lars Marowsky-Bree
2000-11-09 12:40           ` Alexander Viro
2000-11-09 13:02             ` Michael Rothwell
2000-11-09 13:30               ` Alexander Viro
2000-11-09 13:39                 ` Michael Rothwell
2000-11-09 17:19                 ` Mike Coleman
2000-11-09 17:27                   ` Alexander Viro
2000-11-10 11:42                     ` Martin Dalecki
2000-11-09 13:40               ` Marco Colombo
2000-11-10  8:44           ` Christoph Rohland
2000-11-09 12:50       ` Tigran Aivazian
2000-11-09 16:03       ` Ingo Molnar
2000-11-10  8:42         ` Christoph Rohland
2000-11-09 14:28   ` Theodore Y. Ts'o
2000-11-10 15:07   ` Matti Aarnio
2000-11-10 15:24     ` Michael Rothwell
2000-11-13 21:56 ` Advanced Linux Kernel/Enterprise Linux Kernel Josue Emmanuel Amaro
2000-11-14  7:49   ` Lars Marowsky-Bree
2000-11-14 18:33   ` lamont
  -- strict thread matches above, loose matches on Subject: below --
2000-11-14 14:59 Jesse Pollard
2000-11-14 15:47 ` David Weinehall
2000-11-14 17:14 ` Michael Rothwell
2000-11-14 16:20   ` Mike Dresser
2000-11-14 17:27     ` Michael Rothwell
2000-11-14 17:32       ` Michael Rothwell
2000-11-14 16:25   ` Richard B. Johnson
2000-11-14 17:29     ` Michael Rothwell
2000-11-14 16:38       ` Mark Hahn
2000-11-14 19:23         ` spam
2000-11-14 16:41       ` Richard B. Johnson
2000-11-14 17:06         ` Michael Meissner
2000-11-14 17:59           ` Richard B. Johnson
2000-11-14 17:51         ` Buddha Buck
2000-11-14 18:10         ` Michael Rothwell
2000-11-14 18:00           ` Richard B. Johnson
2000-11-15  0:31             ` Gerhard Mack
2000-11-14 20:08         ` Alexander Viro
2000-11-14 16:57       ` David Relson
2000-11-14 18:17     ` Rik van Riel
2000-11-14 19:15     ` spam
2000-11-14 16:53   ` David Relson
2000-11-14 17:06   ` Andrea Arcangeli
2000-11-14 17:55   ` Andreas Dilger
2000-11-14 18:35   ` Christoph Hellwig
2000-11-14 23:06   ` Werner Almesberger
2000-11-15  4:25   ` Albert D. Cahalan
2000-11-17 22:10   ` Daniel Phillips
2000-11-18  0:58     ` Eric W. Biederman
2000-11-18 20:13       ` Daniel Phillips
2000-11-18 16:40     ` Pavel Machek
2000-11-19 20:37       ` Daniel Phillips
2000-11-20 13:34         ` Pavel Machek
2000-11-14 17:34 ` Andrea Arcangeli
2000-11-14 18:03 Marty Fouts
2000-11-14 18:06 Marty Fouts
2000-11-14 18:10 Marty Fouts
2000-11-14 19:43 ` Steve VanDevender
2000-11-15  1:13   ` Leo Mauro
2000-11-14 18:18 Marty Fouts
2000-11-14 18:20 Marty Fouts
2000-11-15  4:19 Marty Fouts
2000-11-17  5:28 Bernd Eckenfels

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