Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-07-21 18:45:04 -0700 (Wed, 21 Jul 2004)
Revision: 1825
Log message:

      Added OMakefiles.  Note that this doesn't quite work at the moment
      because of problems with ocamldep.
      

Changes  Path
Added mojavefs/src/uservfs/old/OMakefile
Properties mojavefs/src/uservfs/old/OMakefile
Added mojavefs/src/uservfs/old/OMakeroot
Properties mojavefs/src/uservfs/old/OMakeroot
Added mojavefs/src/uservfs/old/module/OMakefile
Properties mojavefs/src/uservfs/old/module/OMakefile
Added mojavefs/src/uservfs/old/servers/mirror/OMakefile
Properties mojavefs/src/uservfs/old/servers/mirror/OMakefile
+2 -2 mojavefs/src/uservfs/old/servers/mirror/mirror.c
Added mojavefs/src/uservfs/old/servers/umfs/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/OMakefile
Added mojavefs/src/uservfs/old/servers/umfs/cdev/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/cdev/OMakefile
Added mojavefs/src/uservfs/old/servers/umfs/cfs/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/cfs/OMakefile
Added mojavefs/src/uservfs/old/servers/umfs/clib/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/clib/OMakefile
Added mojavefs/src/uservfs/old/servers/umfs/fs/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/fs/OMakefile
Added mojavefs/src/uservfs/old/servers/umfs/main/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/main/OMakefile
Added mojavefs/src/uservfs/old/servers/umfs/mfs/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/mfs/OMakefile
Added mojavefs/src/uservfs/old/servers/umfs/mllib/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/mllib/OMakefile
Added mojavefs/src/uservfs/old/servers/umfs/pseudofs/OMakefile
Properties mojavefs/src/uservfs/old/servers/umfs/pseudofs/OMakefile

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-07-21 19:41:03 -0700 (Wed, 21 Jul 2004)
Revision: 1826
Log message:

      Include the right directories (in other words, /lib/modules/<version>/build/include).
      

Changes  Path
+9 -0 mojavefs/src/uservfs/old/OMakefile

Changes by: ( at unknown.email)
Date: 2004-07-21 19:41:03 -0700 (Wed, 21 Jul 2004)
Revision: 1827
Log message:

      This commit was manufactured by cvs2svn to create branch 'erm'.

Changes  Path
Copied mojavefs-branches/erm
Deleted mojavefs-branches/erm/src/Makefile
Deleted mojavefs-branches/erm/src/Rules.mk
Deleted mojavefs-branches/erm/src/uservfs/old/servers/mirror/mirror.c
Copied mojavefs-branches/erm/src/uservfs/old/servers/mirror/mirror.c

Changes by: erm (erm at unknown.email)
Date: 2004-07-23 15:45:58 -0700 (Fri, 23 Jul 2004)
Revision: 1828
Log message:

      Initial branch of Evan Murphy's work on the uservfs system for userland
      filesystems.
      
      Changes from the trunk include:
      -- A less bad DEBUG macro system
      -- Setting dir_listing_response.final = 1 always in mirror.c:500.  This
         probably isn't The Right Thing To Do, but it was a total deadlock in the
         trunk.
      -- Mangled Makefiles.  Not more broken than before...
      
      Almost all the work was done in the old/ source tree because it doesn't
      want to use Construct.  Otherwise the sources for the module and mirror are
      only trivially different, as far as I can tell.
      

Changes  Path
+9 -8 mojavefs-branches/erm/src/uservfs/libmojave.m4
+2 -1 mojavefs-branches/erm/src/uservfs/old/Makefile
+5 -4 mojavefs-branches/erm/src/uservfs/old/module/Makefile
+1 -0 mojavefs-branches/erm/src/uservfs/old/module/dsm.c
+4 -1 mojavefs-branches/erm/src/uservfs/old/module/start
+1 -1 mojavefs-branches/erm/src/uservfs/old/module/stop
+42 -1 mojavefs-branches/erm/src/uservfs/old/module/uservfs.h
+80 -101 mojavefs-branches/erm/src/uservfs/old/module/uservfs_dev.c
+20 -56 mojavefs-branches/erm/src/uservfs/old/module/uservfs_dir.c
+8 -24 mojavefs-branches/erm/src/uservfs/old/module/uservfs_file.c
+6 -18 mojavefs-branches/erm/src/uservfs/old/module/uservfs_inode.c
+2 -6 mojavefs-branches/erm/src/uservfs/old/module/uservfs_link.c
+1 -3 mojavefs-branches/erm/src/uservfs/old/module/uservfs_root.c
+55 -78 mojavefs-branches/erm/src/uservfs/old/module/uservfs_rpc.c
+7 -21 mojavefs-branches/erm/src/uservfs/old/module/uservfs_super.c
+3 -1 mojavefs-branches/erm/src/uservfs/old/servers/mirror/Makefile
+141 -81 mojavefs-branches/erm/src/uservfs/old/servers/mirror/mirror.c

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-07-23 16:50:27 -0700 (Fri, 23 Jul 2004)
Revision: 1829
Log message:

      old now compiles with omake.
      

Changes  Path
+2 -3 mojavefs-branches/erm/src/uservfs/old/OMakefile
+8 -1 mojavefs-branches/erm/src/uservfs/old/module/OMakefile

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-07-24 18:08:22 -0700 (Sat, 24 Jul 2004)
Revision: 1830
Log message:

      The module now compiles with Linux kernel 2.6.
      I don't know if it works yet though...
      

Changes  Path
+3 -57 mojavefs-branches/erm/src/uservfs/old/module/Makefile
+67 -21 mojavefs-branches/erm/src/uservfs/old/module/OMakefile
+7 -2 mojavefs-branches/erm/src/uservfs/old/module/start
+12 -44 mojavefs-branches/erm/src/uservfs/old/module/uservfs.h
Added mojavefs-branches/erm/src/uservfs/old/module/uservfs_debug.h
Properties mojavefs-branches/erm/src/uservfs/old/module/uservfs_debug.h
+75 -31 mojavefs-branches/erm/src/uservfs/old/module/uservfs_dev.c
+11 -11 mojavefs-branches/erm/src/uservfs/old/module/uservfs_dev.h
+12 -0 mojavefs-branches/erm/src/uservfs/old/module/uservfs_dir.c
+5 -1 mojavefs-branches/erm/src/uservfs/old/module/uservfs_dir.h
+14 -0 mojavefs-branches/erm/src/uservfs/old/module/uservfs_file.c
+2 -0 mojavefs-branches/erm/src/uservfs/old/module/uservfs_inode.c
+6 -0 mojavefs-branches/erm/src/uservfs/old/module/uservfs_link.c
Added mojavefs-branches/erm/src/uservfs/old/module/uservfs_linux.h
Properties mojavefs-branches/erm/src/uservfs/old/module/uservfs_linux.h
+7 -3 mojavefs-branches/erm/src/uservfs/old/module/uservfs_root.c
+10 -8 mojavefs-branches/erm/src/uservfs/old/module/uservfs_rpc.c
+28 -5 mojavefs-branches/erm/src/uservfs/old/module/uservfs_super.c

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-07-26 10:01:36 -0700 (Mon, 26 Jul 2004)
Revision: 1831
Log message:

      Modified servers with new time changes.
      

Changes  Path
Properties mojavefs-branches/erm/src/uservfs/old/module
+3 -0 mojavefs-branches/erm/src/uservfs/old/module/.cvsignore
+9 -8 mojavefs-branches/erm/src/uservfs/old/servers/mirror/mirror.c
+6 -6 mojavefs-branches/erm/src/uservfs/old/servers/umfs/clib/ml_uservfs.c

Changes by: erm (erm at unknown.email)
Date: 2004-07-26 11:51:06 -0700 (Mon, 26 Jul 2004)
Revision: 1832
Log message:

      Fixed minor conflicts with Jason's commit.
      Made symlinks (sort of) work.  readlink() now acts correctly, but open
      still has issues--it looks like it's not following the symlink correctly.
      

Changes  Path
+0 -0 mojavefs-branches/erm/src/uservfs/old/module/uservfs.h
+2 -1 mojavefs-branches/erm/src/uservfs/old/module/uservfs_dev.c
+8 -5 mojavefs-branches/erm/src/uservfs/old/module/uservfs_rpc.c
+12 -3 mojavefs-branches/erm/src/uservfs/old/servers/mirror/mirror.c

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-07-26 13:08:41 -0700 (Mon, 26 Jul 2004)
Revision: 1833
Log message:

      Removed -I from all the INCLUDES
      

Changes  Path
Properties mojavefs-branches/erm/src/uservfs/old
Added mojavefs-branches/erm/src/uservfs/old/.cvsignore
Properties mojavefs-branches/erm/src/uservfs/old/.cvsignore
Properties mojavefs-branches/erm/src/uservfs/old/module
+1 -0 mojavefs-branches/erm/src/uservfs/old/module/.cvsignore
+4 -4 mojavefs-branches/erm/src/uservfs/old/module/OMakefile
Added mojavefs-branches/erm/src/uservfs/old/module/uservfs_version.h
Properties mojavefs-branches/erm/src/uservfs/old/module/uservfs_version.h
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/mirror/OMakefile
Properties mojavefs-branches/erm/src/uservfs/old/servers/umfs/cdev
+1 -0 mojavefs-branches/erm/src/uservfs/old/servers/umfs/cdev/.cvsignore
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/umfs/cdev/OMakefile
Properties mojavefs-branches/erm/src/uservfs/old/servers/umfs/cfs
+1 -0 mojavefs-branches/erm/src/uservfs/old/servers/umfs/cfs/.cvsignore
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/umfs/cfs/OMakefile
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/umfs/clib/OMakefile
Properties mojavefs-branches/erm/src/uservfs/old/servers/umfs/fs
+1 -0 mojavefs-branches/erm/src/uservfs/old/servers/umfs/fs/.cvsignore
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/umfs/fs/OMakefile
Properties mojavefs-branches/erm/src/uservfs/old/servers/umfs/main
+1 -0 mojavefs-branches/erm/src/uservfs/old/servers/umfs/main/.cvsignore
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/umfs/main/OMakefile
Properties mojavefs-branches/erm/src/uservfs/old/servers/umfs/mfs
+1 -0 mojavefs-branches/erm/src/uservfs/old/servers/umfs/mfs/.cvsignore
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/umfs/mfs/OMakefile
Properties mojavefs-branches/erm/src/uservfs/old/servers/umfs/mllib
+1 -0 mojavefs-branches/erm/src/uservfs/old/servers/umfs/mllib/.cvsignore
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/umfs/mllib/OMakefile
Properties mojavefs-branches/erm/src/uservfs/old/servers/umfs/pseudofs
+1 -0 mojavefs-branches/erm/src/uservfs/old/servers/umfs/pseudofs/.cvsignore
+1 -1 mojavefs-branches/erm/src/uservfs/old/servers/umfs/pseudofs/OMakefile

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-07-26 16:53:30 -0700 (Mon, 26 Jul 2004)
Revision: 1834
Log message:

      Fixes to compile again on 2.4
      

Changes  Path
+4 -0 mojavefs-branches/erm/src/uservfs/old/module/OMakefile
+2 -4 mojavefs-branches/erm/src/uservfs/old/module/uservfs_dev.c