Changes by: buckweat (buckweat at unknown.email)
Date: 2002-07-24 16:26:51 -0700 (Wed, 24 Jul 2002)
Revision: 1614
Log message:

      Commiting horrible code.
      

Changes  Path
+2 -1 mojavefs/src/fio/Makefile
Added mojavefs/src/fio/chunk.c
Properties mojavefs/src/fio/chunk.c
+12 -2 mojavefs/src/fio/dir.c
+1 -1 mojavefs/src/fio/file.c
+10 -1 mojavefs/src/fio/fio.h
+1 -1 mojavefs/src/fio/fio_mod.c
+12 -4 mojavefs/src/fio/super.c

Changes by: buckweat (buckweat at unknown.email)
Date: 2002-07-26 14:56:25 -0700 (Fri, 26 Jul 2002)
Revision: 1615
Log message:

      I think the problem the oops on every 2nd mount is now fixed. The only
      files actually touched should be chunk.c and super.c. I'll explain the
      reason for the oops in person, rather than writing a page...
      
      We are currently having a problem with rmdir, and I am now going to try
      to fix that. I don't know why it stopped working.
      

Changes  Path
+42 -43 mojavefs/src/fio/chunk.c
+6 -1 mojavefs/src/fio/super.c

Changes by: buckweat (buckweat at unknown.email)
Date: 2002-07-29 17:37:42 -0700 (Mon, 29 Jul 2002)
Revision: 1616
Log message:

      Today's changes. We still get panics/oopses when trying to read
      $MNT/.chunks, but this is acceptable for now (as the user should never
      know about that directory). My guess is that it is something related to
      initially creating the directory while mounted as an ext2 partition, and
      then trying to handle it from mojavefs, perhaps something similar to the
      persistence of the root dentry/inode...
      

Changes  Path
+3 -2 mojavefs/src/fio/chunk.c
+1 -2 mojavefs/src/fio/dir.c
+1 -1 mojavefs/src/fio/file.c
+31 -9 mojavefs/src/fio/super.c

Changes by: buckweat (buckweat at unknown.email)
Date: 2002-07-31 17:40:44 -0700 (Wed, 31 Jul 2002)
Revision: 1617
Log message:

      Didn't get anything more done as I was busy getting vmware to work
      right. I should be all set for tomorrow though. I might be able to get
      more done tonight, but we'll see...
      

Changes  Path
+68 -80 mojavefs/src/fio/chunk.c
+2 -0 mojavefs/src/fio/dir.c
+2 -4 mojavefs/src/fio/fio.h
+23 -9 mojavefs/src/fio/super.c