diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2009-11-03 00:33:11 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2009-11-03 00:33:11 (GMT) |
commit | 8442f478923a1a6bd61c9eab779227ab7e7dff2c (patch) | |
tree | 4cb68c505f82a6a740e7aac5c70ac11cf056e236 /FuseArchive | |
parent | 0109ea57045b7d85367cd201d288a7683e20319c (diff) | |
download | fusearchive-8442f478923a1a6bd61c9eab779227ab7e7dff2c.zip fusearchive-8442f478923a1a6bd61c9eab779227ab7e7dff2c.tar.gz fusearchive-8442f478923a1a6bd61c9eab779227ab7e7dff2c.tar.bz2 |
Fix wrong block count for cache
Diffstat (limited to 'FuseArchive')
-rw-r--r-- | FuseArchive/ChunkFile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FuseArchive/ChunkFile.py b/FuseArchive/ChunkFile.py index ca7ee2b..99f7d32 100644 --- a/FuseArchive/ChunkFile.py +++ b/FuseArchive/ChunkFile.py @@ -11,7 +11,7 @@ magic_blocksize = 1024 * 1024 * 5 chunkstyle = 'fs' # This is the number of actualy blocks in that size -dirty_flush = 5 * magic_blocksize +dirty_flush = 5 # This is a cache of open files by inode, to fix the lseek == size problem # this causes a failure in fsx-linux becuase to to lseek(fd,0,seek_end) it |