* cdfs
@ 2001-03-13 15:23 J . A . Magallon
2001-03-13 15:37 ` cdfs Christoph Hellwig
` (2 more replies)
0 siblings, 3 replies; 20+ messages in thread
From: J . A . Magallon @ 2001-03-13 15:23 UTC (permalink / raw)
To: Linux Kernel
Hi,
Recently I read the BeOS www page, and answerd a question in other mailing
list. Both things have remind me of a pretty file system: 'cdfs'.
Anybody knows if there is a port of 'cdfs' (Audio CD File System) for Linux ?
Which fs now in kernel would be good as a template to start ?
I am always looking for something enough easy to start kernel programming,
and this could be a nice start (look, throw away all your ripping soft
and just do a 'cp').
--
J.A. Magallon $> cd pub
mailto:jamagallon@able.es $> more beer
Linux werewolf 2.4.2-ac19 #3 SMP Mon Mar 12 23:50:29 CET 2001 i686
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: cdfs
2001-03-13 15:23 cdfs J . A . Magallon
@ 2001-03-13 15:37 ` Christoph Hellwig
2001-03-13 15:37 ` cdfs John Levon
2001-03-13 15:40 ` cdfs Ville Herva
2 siblings, 0 replies; 20+ messages in thread
From: Christoph Hellwig @ 2001-03-13 15:37 UTC (permalink / raw)
To: "J . A . Magallon"; +Cc: Linux Kernel
In article <20010313162341.C1311@werewolf.able.es> you wrote:
> Hi,
>
> Recently I read the BeOS www page, and answerd a question in other mailing
> list. Both things have remind me of a pretty file system: 'cdfs'.
>
> Anybody knows if there is a port of 'cdfs' (Audio CD File System) for Linux ?
There is a cdfs, but it does more then just adding audio CDs to the namespace...
Take a look at:
http://www.elis.rug.ac.be/~ronsse/cdfs/
Christoph
--
Of course it doesn't work. We've performed a software upgrade.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: cdfs
2001-03-13 15:23 cdfs J . A . Magallon
2001-03-13 15:37 ` cdfs Christoph Hellwig
@ 2001-03-13 15:37 ` John Levon
2001-03-13 15:40 ` cdfs Ville Herva
2 siblings, 0 replies; 20+ messages in thread
From: John Levon @ 2001-03-13 15:37 UTC (permalink / raw)
To: J . A . Magallon; +Cc: Linux Kernel
On Tue, 13 Mar 2001, J . A . Magallon wrote:
> Hi,
>
> Recently I read the BeOS www page, and answerd a question in other mailing
> list. Both things have remind me of a pretty file system: 'cdfs'.
>
> Anybody knows if there is a port of 'cdfs' (Audio CD File System) for Linux ?
> Which fs now in kernel would be good as a template to start ?
> I am always looking for something enough easy to start kernel programming,
> and this could be a nice start (look, throw away all your ripping soft
> and just do a 'cp').
>
>
http://www.kernelnewbies.org/ has this link :
http://www.elis.rug.ac.be/~ronsse/cdfs/
john
--
"Alan Turing thought about criteria to settle the question of whether
machines can think, a question of which we now know that it is about
as relevant as the question of whether submarines can swim."
- Dijkstra
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: cdfs
2001-03-13 15:23 cdfs J . A . Magallon
2001-03-13 15:37 ` cdfs Christoph Hellwig
2001-03-13 15:37 ` cdfs John Levon
@ 2001-03-13 15:40 ` Ville Herva
2001-03-13 19:45 ` cdfs J . A . Magallon
2 siblings, 1 reply; 20+ messages in thread
From: Ville Herva @ 2001-03-13 15:40 UTC (permalink / raw)
To: J . A . Magallon; +Cc: Linux Kernel
On Tue, Mar 13, 2001 at 04:23:41PM +0100, you [J . A . Magallon] claimed:
> Hi,
>
> Recently I read the BeOS www page, and answerd a question in other mailing
> list. Both things have remind me of a pretty file system: 'cdfs'.
>
> Anybody knows if there is a port of 'cdfs' (Audio CD File System) for Linux ?
> Which fs now in kernel would be good as a template to start ?
> I am always looking for something enough easy to start kernel programming,
> and this could be a nice start (look, throw away all your ripping soft
> and just do a 'cp').
Below is one response to a similar question from the l-k archive:
From: David Balazic <david.balazic@uni-mb.si>
Date: Thu, 13 Jan 2000 12:08:39 -0800
Subject: Re: CD-ROM Driver Design
There are already two file-systems for CD-audio on Linux :
- cdfs at
http://www.elis.rug.ac.be/~ronsse/cdfs/
- audiofs at
http://fly.cc.fer.hr/~ptolomei/audiofs/
Are you sure there is a need for a third one ? The audiofs uses the
CDROMREADAUDIO for reading the data and uses the page-cache for caching. I
personally added the page-cache code , but I don't believe it makes a lot
of sense, because when ripping audio, you read data sequentially , so the
cache just eats all free RAM ( possibly throwing out other more usefull
cached data ) and gives almost no gain. By the way , when there is a
"normal" FS on a "normal" block device, does the data get cached twice,
once in buffer-cache and once in page-cache ?
David Balazic
-- v --
v@iki.fi
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: cdfs
2001-03-13 15:40 ` cdfs Ville Herva
@ 2001-03-13 19:45 ` J . A . Magallon
2001-03-13 19:59 ` cdfs Ville Herva
0 siblings, 1 reply; 20+ messages in thread
From: J . A . Magallon @ 2001-03-13 19:45 UTC (permalink / raw)
To: Ville Herva; +Cc: Linux Kernel
On 03.13 Ville Herva wrote:
>
> Below is one response to a similar question from the l-k archive:
>
> From: David Balazic <david.balazic@uni-mb.si>
> Date: Thu, 13 Jan 2000 12:08:39 -0800
> Subject: Re: CD-ROM Driver Design
>
> There are already two file-systems for CD-audio on Linux :
> - cdfs at
> http://www.elis.rug.ac.be/~ronsse/cdfs/
> - audiofs at
> http://fly.cc.fer.hr/~ptolomei/audiofs/
>
> Are you sure there is a need for a third one ? The audiofs uses the
Oh, NO. All my searchs give no result, thanks to all the people who
answered.
I will try those links.
--
J.A. Magallon $> cd pub
mailto:jamagallon@able.es $> more beer
Linux werewolf 2.4.2-ac19 #3 SMP Mon Mar 12 23:50:29 CET 2001 i686
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: cdfs
2001-03-13 19:45 ` cdfs J . A . Magallon
@ 2001-03-13 19:59 ` Ville Herva
0 siblings, 0 replies; 20+ messages in thread
From: Ville Herva @ 2001-03-13 19:59 UTC (permalink / raw)
To: J . A . Magallon; +Cc: Linux Kernel
On Tue, Mar 13, 2001 at 08:45:07PM +0100, you [J . A . Magallon] claimed:
>
> On 03.13 Ville Herva wrote:
> >
> > Below is one response to a similar question from the l-k archive:
> >
> > From: David Balazic <david.balazic@uni-mb.si>
> > Date: Thu, 13 Jan 2000 12:08:39 -0800
> > Subject: Re: CD-ROM Driver Design
> >
> > There are already two file-systems for CD-audio on Linux :
> > - cdfs at
> > http://www.elis.rug.ac.be/~ronsse/cdfs/
> > - audiofs at
> > http://fly.cc.fer.hr/~ptolomei/audiofs/
> >
> > Are you sure there is a need for a third one ? The audiofs uses the
>
> Oh, NO. All my searchs give no result, thanks to all the people who
> answered.
Just to clarify: also the "Are you sure there..." part was from the David
Balazic's mail. I should have quoted more clearly.
-- v --
v@iki.fi
^ permalink raw reply [flat|nested] 20+ messages in thread
* CDFS
@ 2004-03-19 16:01 Richard B. Johnson
2004-03-19 16:10 ` CDFS Randy.Dunlap
` (2 more replies)
0 siblings, 3 replies; 20+ messages in thread
From: Richard B. Johnson @ 2004-03-19 16:01 UTC (permalink / raw)
To: Linux kernel
Just got a CD/ROM that 'works' on W$, but not Linux.
W$ `properties` call it 'CDFS'. Is there any such Linux
support?
Cheers,
Dick Johnson
Penguin : Linux version 2.4.24 on an i686 machine (797.90 BogoMips).
Note 96.31% of all statistics are fiction.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 16:01 CDFS Richard B. Johnson
@ 2004-03-19 16:10 ` Randy.Dunlap
2004-03-19 16:34 ` CDFS Richard B. Johnson
2004-03-19 16:42 ` CDFS Norberto Bensa
2004-03-19 20:24 ` CDFS Felipe Alfaro Solana
2 siblings, 1 reply; 20+ messages in thread
From: Randy.Dunlap @ 2004-03-19 16:10 UTC (permalink / raw)
To: root; +Cc: linux-kernel
On Fri, 19 Mar 2004 11:01:44 -0500 (EST) Richard B. Johnson wrote:
|
| Just got a CD/ROM that 'works' on W$, but not Linux.
| W$ `properties` call it 'CDFS'. Is there any such Linux
| support?
You did try to search for it, right?
http://www.elis.rug.ac.be/~ronsse/cdfs/
<plug>
Some other Linux fs-es:
http://www.xenotime.net/linux/linux-fs.html
</plug>
--
~Randy
"You can't do anything without having to do something else first."
-- Belefant's Law
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 16:10 ` CDFS Randy.Dunlap
@ 2004-03-19 16:34 ` Richard B. Johnson
2004-03-19 16:44 ` CDFS Tigran Aivazian
0 siblings, 1 reply; 20+ messages in thread
From: Richard B. Johnson @ 2004-03-19 16:34 UTC (permalink / raw)
To: Randy.Dunlap; +Cc: linux-kernel
On Fri, 19 Mar 2004, Randy.Dunlap wrote:
> On Fri, 19 Mar 2004 11:01:44 -0500 (EST) Richard B. Johnson wrote:
>
> |
> | Just got a CD/ROM that 'works' on W$, but not Linux.
> | W$ `properties` call it 'CDFS'. Is there any such Linux
> | support?
>
> You did try to search for it, right?
>
Sure did and what I get was an explaination that, for
Linux, the letters "CDFS" refer to something that "exports
all the tracks and boot images of a CD as normal files".
That's not what I want. I want to mount a CDFS file-system.
Given that, maybe the explaination is bogus, but I
need some CDFS file-system support so I can mount
a Microsoft CDFS CD/ROM. If such support exists, I
would think that I should be able to do:
mount -t cdfs /dev/cdrom /mnt
Cheers,
Dick Johnson
Penguin : Linux version 2.4.24 on an i686 machine (797.90 BogoMips).
Note 96.31% of all statistics are fiction.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 16:01 CDFS Richard B. Johnson
2004-03-19 16:10 ` CDFS Randy.Dunlap
@ 2004-03-19 16:42 ` Norberto Bensa
2004-03-19 16:58 ` CDFS Richard B. Johnson
2004-03-19 20:24 ` CDFS Felipe Alfaro Solana
2 siblings, 1 reply; 20+ messages in thread
From: Norberto Bensa @ 2004-03-19 16:42 UTC (permalink / raw)
To: root; +Cc: Linux kernel
Richard B. Johnson wrote:
> Just got a CD/ROM that 'works' on W$, but not Linux.
> W$ `properties` call it 'CDFS'. Is there any such Linux
> support?
What's on the CD?
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 16:34 ` CDFS Richard B. Johnson
@ 2004-03-19 16:44 ` Tigran Aivazian
2004-03-19 17:09 ` CDFS Richard B. Johnson
0 siblings, 1 reply; 20+ messages in thread
From: Tigran Aivazian @ 2004-03-19 16:44 UTC (permalink / raw)
To: Richard B. Johnson; +Cc: Randy.Dunlap, linux-kernel
On Fri, 19 Mar 2004, Richard B. Johnson wrote:
> On Fri, 19 Mar 2004, Randy.Dunlap wrote:
>
> > On Fri, 19 Mar 2004 11:01:44 -0500 (EST) Richard B. Johnson wrote:
> >
> > |
> > | Just got a CD/ROM that 'works' on W$, but not Linux.
> > | W$ `properties` call it 'CDFS'. Is there any such Linux
> > | support?
> >
> > You did try to search for it, right?
> >
>
> Sure did and what I get was an explaination that, for
> Linux, the letters "CDFS" refer to something that "exports
> all the tracks and boot images of a CD as normal files".
>
> That's not what I want. I want to mount a CDFS file-system.
>
> Given that, maybe the explaination is bogus, but I
> need some CDFS file-system support so I can mount
> a Microsoft CDFS CD/ROM. If such support exists, I
> would think that I should be able to do:
>
> mount -t cdfs /dev/cdrom /mnt
Unless something has changed seriously in just a few years, the name CDFS
was always just a Microsoft synonym for the proper name iso9660. The Linux
name CDFS is the filesystem which Randy pointed you at, for mounting
multi-session CDs and accessing individual sessions as files (iso images).
So, if you have what Microsoft calls CDFS then it is simply iso9660 and if
it doesn't mount then either your CD is damaged (and you only get a false
"impression" of it working in Windows) or there is a bug in Linux iso9660
implementation. What are the error messages you get when you try to mount
it as an iso9660?
(You didn't forget to compile Joliet and RR extensions into your kernel,
did you?)
Kind regards
Tigran
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
@ 2004-03-19 16:45 Arnd Bergmann
0 siblings, 0 replies; 20+ messages in thread
From: Arnd Bergmann @ 2004-03-19 16:45 UTC (permalink / raw)
To: Randy.Dunlap; +Cc: linux-kernel, Richard B. Johnson, COTTE
On Fri, 19 Mar 2004, Randy.Dunlap wrote:
> <plug>
> Some other Linux fs-es:
> http://www.xenotime.net/linux/linux-fs.html
<plug mode="another">
Nice list, maybe you can also add xip2fs (http://linuxvm.org/Patches/).
</plug>
> </plug>
Arnd <><
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 16:42 ` CDFS Norberto Bensa
@ 2004-03-19 16:58 ` Richard B. Johnson
0 siblings, 0 replies; 20+ messages in thread
From: Richard B. Johnson @ 2004-03-19 16:58 UTC (permalink / raw)
To: Norberto Bensa; +Cc: Linux kernel
On Fri, 19 Mar 2004, Norberto Bensa wrote:
> Richard B. Johnson wrote:
> > Just got a CD/ROM that 'works' on W$, but not Linux.
> > W$ `properties` call it 'CDFS'. Is there any such Linux
> > support?
>
> What's on the CD?
>
Some source-code written on a M$ machine and then burned into
the CD. I can do `od /dev/cdrom` and read it. I just can't
mount it. One responder said it may have a UDF file-system
on it. I am building a module as I write. Thanks.
Cheers,
Dick Johnson
Penguin : Linux version 2.4.24 on an i686 machine (797.90 BogoMips).
Note 96.31% of all statistics are fiction.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 16:44 ` CDFS Tigran Aivazian
@ 2004-03-19 17:09 ` Richard B. Johnson
2004-03-19 21:37 ` CDFS Stefan Smietanowski
0 siblings, 1 reply; 20+ messages in thread
From: Richard B. Johnson @ 2004-03-19 17:09 UTC (permalink / raw)
To: Tigran Aivazian; +Cc: Randy.Dunlap, linux-kernel
On Fri, 19 Mar 2004, Tigran Aivazian wrote:
> On Fri, 19 Mar 2004, Richard B. Johnson wrote:
>
> > On Fri, 19 Mar 2004, Randy.Dunlap wrote:
> >
> > > On Fri, 19 Mar 2004 11:01:44 -0500 (EST) Richard B. Johnson wrote:
> > >
> > > |
> > > | Just got a CD/ROM that 'works' on W$, but not Linux.
> > > | W$ `properties` call it 'CDFS'. Is there any such Linux
> > > | support?
> > >
> > > You did try to search for it, right?
> > >
> >
> > Sure did and what I get was an explaination that, for
> > Linux, the letters "CDFS" refer to something that "exports
> > all the tracks and boot images of a CD as normal files".
> >
> > That's not what I want. I want to mount a CDFS file-system.
> >
> > Given that, maybe the explaination is bogus, but I
> > need some CDFS file-system support so I can mount
> > a Microsoft CDFS CD/ROM. If such support exists, I
> > would think that I should be able to do:
> >
> > mount -t cdfs /dev/cdrom /mnt
>
> Unless something has changed seriously in just a few years, the name CDFS
> was always just a Microsoft synonym for the proper name iso9660. The Linux
> name CDFS is the filesystem which Randy pointed you at, for mounting
> multi-session CDs and accessing individual sessions as files (iso images).
>
Mounting it as an iso9660 fs doesn't work.
> So, if you have what Microsoft calls CDFS then it is simply iso9660 and if
> it doesn't mount then either your CD is damaged (and you only get a false
> "impression" of it working in Windows) or there is a bug in Linux iso9660
> implementation. What are the error messages you get when you try to mount
> it as an iso9660?
Script started on Fri Mar 19 12:01:38 2004
# umount /mnt
# umount /mnt
umount: /mnt: not mounted
# umount -t iso9660 /dev/cdrom /mnt\b
mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
or too many mounted file systems
# exit
Script done on Fri Mar 19 12:04:49 2004
>
> (You didn't forget to compile Joliet and RR extensions into your kernel,
> did you?)
Nope.
>
> Kind regards
> Tigran
>
Cheers,
Dick Johnson
Penguin : Linux version 2.4.24 on an i686 machine (797.90 BogoMips).
Note 96.31% of all statistics are fiction.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 16:01 CDFS Richard B. Johnson
2004-03-19 16:10 ` CDFS Randy.Dunlap
2004-03-19 16:42 ` CDFS Norberto Bensa
@ 2004-03-19 20:24 ` Felipe Alfaro Solana
2004-03-19 20:48 ` CDFS Richard B. Johnson
2 siblings, 1 reply; 20+ messages in thread
From: Felipe Alfaro Solana @ 2004-03-19 20:24 UTC (permalink / raw)
To: root; +Cc: Linux kernel
On Fri, 2004-03-19 at 17:01, Richard B. Johnson wrote:
> Just got a CD/ROM that 'works' on W$, but not Linux.
> W$ `properties` call it 'CDFS'. Is there any such Linux
> support?
AFAICT, in Windows CDFS == ISO-9660, nothing more, nothing less.
However, CDFS.SYS from Windows does have support for propietary Romeo
and Jouliet extensions, which maybe are the culprit of the problem.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 20:24 ` CDFS Felipe Alfaro Solana
@ 2004-03-19 20:48 ` Richard B. Johnson
0 siblings, 0 replies; 20+ messages in thread
From: Richard B. Johnson @ 2004-03-19 20:48 UTC (permalink / raw)
To: Felipe Alfaro Solana; +Cc: Linux kernel
On Fri, 19 Mar 2004, Felipe Alfaro Solana wrote:
> On Fri, 2004-03-19 at 17:01, Richard B. Johnson wrote:
> > Just got a CD/ROM that 'works' on W$, but not Linux.
> > W$ `properties` call it 'CDFS'. Is there any such Linux
> > support?
>
> AFAICT, in Windows CDFS == ISO-9660, nothing more, nothing less.
> However, CDFS.SYS from Windows does have support for propietary Romeo
> and Jouliet extensions, which maybe are the culprit of the problem.
>
Well I just compiled in a module for UDF file-system since somebody
said it could be UDF on the CD instead of ISO-9660. In the process
of re-booting (nothing else), the CD decided to be mountable.
This doesn't make any sense because once the M$ CD wouldn't mount
I tried other ISO-9660 CDS and they mounted fine. I do backups
using ISO-9660 with the Joliet extensions as well. Anyway, I
could read the M$ CD using `od` as well.
So, all I did was re-boot (just like Windows) and it mounted fine.
Maybe there's somebody working on Linux that used to work for
M$, so it got infected with the Windows syndrome?
Cheers,
Dick Johnson
Penguin : Linux version 2.4.24 on an i686 machine (797.90 BogoMips).
Note 96.31% of all statistics are fiction.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 17:09 ` CDFS Richard B. Johnson
@ 2004-03-19 21:37 ` Stefan Smietanowski
2004-03-19 21:44 ` CDFS Richard B. Johnson
0 siblings, 1 reply; 20+ messages in thread
From: Stefan Smietanowski @ 2004-03-19 21:37 UTC (permalink / raw)
To: root; +Cc: Tigran Aivazian, Randy.Dunlap, linux-kernel
Hi.
> Script started on Fri Mar 19 12:01:38 2004
> # umount /mnt
> # umount /mnt
> umount: /mnt: not mounted
> # umount -t iso9660 /dev/cdrom /mnt\b
^^^^^^^^
use "mount" instead of "umount" to mount something.
> mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
> or too many mounted file systems
> # exit
> Script done on Fri Mar 19 12:04:49 2004
// Stefan
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 21:37 ` CDFS Stefan Smietanowski
@ 2004-03-19 21:44 ` Richard B. Johnson
2004-03-19 22:32 ` CDFS Måns Rullgård
0 siblings, 1 reply; 20+ messages in thread
From: Richard B. Johnson @ 2004-03-19 21:44 UTC (permalink / raw)
To: Stefan Smietanowski; +Cc: Tigran Aivazian, Randy.Dunlap, linux-kernel
On Fri, 19 Mar 2004, Stefan Smietanowski wrote:
> Hi.
>
> > Script started on Fri Mar 19 12:01:38 2004
> > # umount /mnt
> > # umount /mnt
> > umount: /mnt: not mounted
> > # umount -t iso9660 /dev/cdrom /mnt\b
> ^^^^^^^^
>
> use "mount" instead of "umount" to mount something.
>
I did. Note that `mount` replies below. I don't know why there
is a 'u' in the echo...
vvv------
> > mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
> > or too many mounted file systems
> > # exit
> > Script done on Fri Mar 19 12:04:49 2004
>
> // Stefan
>
Cheers,
Dick Johnson
Penguin : Linux version 2.4.24 on an i686 machine (797.90 BogoMips).
Note 96.31% of all statistics are fiction.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
2004-03-19 21:44 ` CDFS Richard B. Johnson
@ 2004-03-19 22:32 ` Måns Rullgård
0 siblings, 0 replies; 20+ messages in thread
From: Måns Rullgård @ 2004-03-19 22:32 UTC (permalink / raw)
To: linux-kernel
"Richard B. Johnson" <root@chaos.analogic.com> writes:
> On Fri, 19 Mar 2004, Stefan Smietanowski wrote:
>
>> Hi.
>>
>> > Script started on Fri Mar 19 12:01:38 2004
>> > # umount /mnt
>> > # umount /mnt
>> > umount: /mnt: not mounted
>> > # umount -t iso9660 /dev/cdrom /mnt\b
>> ^^^^^^^^
>>
>> use "mount" instead of "umount" to mount something.
>>
>
> I did. Note that `mount` replies below. I don't know why there
> is a 'u' in the echo...
Maybe it's related to the backspace at the end of the line.
--
Måns Rullgård
mru@kth.se
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: CDFS
[not found] <20040331112520.58e9056c.rddunlap@osdl.org>
@ 2004-04-01 5:36 ` Randy.Dunlap
0 siblings, 0 replies; 20+ messages in thread
From: Randy.Dunlap @ 2004-04-01 5:36 UTC (permalink / raw)
To: arnd; +Cc: lkml
| Date: Fri, 19 Mar 2004 17:45:37 +0100
| From: Arnd Bergmann
|
|
| On Fri, 19 Mar 2004, Randy.Dunlap wrote:
|
| > <plug>
| > Some other Linux fs-es:
| > http://www.xenotime.net/linux/linux-fs.html
|
| <plug mode="another">
| Nice list, maybe you can also add xip2fs (http://linuxvm.org/Patches/).
| </plug>
|
| > </plug>
OK, updated.
Thanks,
--
~Randy
^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2004-04-01 5:43 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-03-19 16:45 CDFS Arnd Bergmann
[not found] <20040331112520.58e9056c.rddunlap@osdl.org>
2004-04-01 5:36 ` CDFS Randy.Dunlap
-- strict thread matches above, loose matches on Subject: below --
2004-03-19 16:01 CDFS Richard B. Johnson
2004-03-19 16:10 ` CDFS Randy.Dunlap
2004-03-19 16:34 ` CDFS Richard B. Johnson
2004-03-19 16:44 ` CDFS Tigran Aivazian
2004-03-19 17:09 ` CDFS Richard B. Johnson
2004-03-19 21:37 ` CDFS Stefan Smietanowski
2004-03-19 21:44 ` CDFS Richard B. Johnson
2004-03-19 22:32 ` CDFS Måns Rullgård
2004-03-19 16:42 ` CDFS Norberto Bensa
2004-03-19 16:58 ` CDFS Richard B. Johnson
2004-03-19 20:24 ` CDFS Felipe Alfaro Solana
2004-03-19 20:48 ` CDFS Richard B. Johnson
2001-03-13 15:23 cdfs J . A . Magallon
2001-03-13 15:37 ` cdfs Christoph Hellwig
2001-03-13 15:37 ` cdfs John Levon
2001-03-13 15:40 ` cdfs Ville Herva
2001-03-13 19:45 ` cdfs J . A . Magallon
2001-03-13 19:59 ` cdfs Ville Herva
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox