Hello,
Please find attached relatively straightforward fixes for intermezzo
problems in 2.5.50. I think all of them related to:
- two missing headers
- use of timespec instead of time_t.
- Peter -
On Wed, 11 Dec 2002, Peter Braam wrote:
| Hello,
|
| Please find attached relatively straightforward fixes for intermezzo
| problems in 2.5.50. I think all of them related to:
| - two missing headers
| - use of timespec instead of time_t.
|
| - Peter -
Patch doesn't apply cleanly to 2.5.51.
File include/linux/fsfilter.h is already in 2.5.51.
After ingoring above: intermezzo doesn't build.
Makefile still contains io_daemon.o, but that should be deleted.
Patch for that is below.
--
~Randy
--- ./fs/intermezzo/Makefile%IMZ Mon Dec 9 18:46:14 2002
+++ ./fs/intermezzo/Makefile Wed Dec 11 11:40:55 2002
@@ -5,7 +5,7 @@
obj-$(CONFIG_INTERMEZZO_FS) += intermezzo.o
intermezzo-objs := cache.o dcache.o dir.o ext_attr.o file.o fileset.o \
- inode.o io_daemon.o journal.o journal_ext2.o journal_ext3.o \
+ inode.o journal.o journal_ext2.o journal_ext3.o \
journal_obdfs.o journal_reiserfs.o journal_tmpfs.o journal_xfs.o \
kml_reint.o kml_unpack.o methods.o presto.o psdev.o replicator.o \
super.o sysctl.o upcall.o vfs.o
Applied (after fixups), but I also moved the intermezzo header files into
intermezzo's own directory instead of leaving them in <linux/*.h>. I don't
see why anybody else should care about intermezzo-specific stuff.
Btw, the thing still doesn't actually compile, since there is no io_deamon
file checked in, even though the makefile says it wants one.
Linus