missing fs ksyms

2000-06-14 Thread Ben Fennema
I think buffer_insert_inode_queue and fsync_inode_buffers need to be added to ksyms.c for ext2 to compile as a module in later 2.4-ac kernels. Ben

Re: UDF streams - how to delete them :)

2000-03-12 Thread Ben Fennema
Jamie Lokier wrote: Ben Fennema wrote: Well, theres a few other pain in the butt things to consider. One, I have to keep track of the file sizes of all the files in the streams directory (there is a record of the total size of the main file + all streams) I guess I'd need a link from

UDF streams - questions for others

2000-03-11 Thread Ben Fennema
Ok, I'm trying to implement streams in UDF. They are kind of like resource forks/extended attributes. Anyways, how they work is a inode has a pointer to a streams directory, which contains all the streams for the inode as files in the directory. So like: FILE --- stream dir

Re: UDF streams - questions for others

2000-03-11 Thread Ben Fennema
Alexander Viro wrote: On Sat, 11 Mar 2000, Ben Fennema wrote: Ok, I'm trying to implement streams in UDF. They are kind of like resource forks/extended attributes. And our support of 'forks' is a bloody mess (as the whole idea of forks is - what can you expect from Crapple

Re: UDF streams - questions for others

2000-03-11 Thread Ben Fennema
Jamie Lokier wrote: Ben Fennema wrote: My first question is, CAN I actually use lookup and readdir on a file (Is it ls being too smart by looking at the thing, deceiding its not a directory, and giving up -- or is it the kernel?) The kernel will more or less do what you ask, though