diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2003-12-11 14:27:57 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2003-12-11 14:27:57 +0000 |
commit | 874d95da5b55ac16daba1edf3b0651a2e6a631a8 (patch) | |
tree | f7d8012df38c561cec8af6d58e74b5e1f2a04aa8 /ChangeLog | |
parent | 406bf11df0a7737104f3d1ff99c47b73cac745ae (diff) | |
download | libfuse-874d95da5b55ac16daba1edf3b0651a2e6a631a8.tar.gz |
fix
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -1,3 +1,30 @@ +2003-12-11 Miklos Szeredi <mszeredi@inf.bme.hu> + + * Add file locking for mount/unmount (based on patch by Valient + Gough) + +2003-12-11 David McNab <david@rebirthing.co.nz> + + * Python filesystem - was broken with python2.3, now fixed: + - changed PyTuple_* calls to PySequence_*, because os.lstat + is no longer returning a pure tuple + - changed PyInt_Check() calls to also call PyLong_Check, + to cover for cases (eg os.lstat) where longs are returned + - Added support for file 'release' handling, which IMO is + essential since this signals to a FS that writes to a file + are complete (and therefore the file can now be disposed of + meaningfully at the python filesystem's discretion) + - Added '__init__' handler to base Fuse class, which allows + your Python class to know the mountpoint and mount args, + as attributes myfs.mountpoint, myfs.optlist, myfs.optdict + + * General: + - added 'mount.fuse' script (in util/ dir), which is meant to be + symlinked from /sbin, and which allows FUSE filesystems to + be mounted with the 'mount' command, and listed in fstab; + also, mount arguments get passed to your filesystem + + 2003-11-04 Miklos Szeredi <mszeredi@inf.bme.hu> * Fix kernel version detection (again). Bugreport by Peter Levart |