2005-07-06 17:14:20 +08:00
|
|
|
2005-07-06 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* fusermount: check if mountpoint is empty (only '.' and '..' for
|
|
|
|
directories, and size = 0 for regular files). If "nonempty"
|
|
|
|
option is given, omit this check. This is useful, so users don't
|
|
|
|
accidentally hide data (e.g. from backup programs). Thanks to
|
|
|
|
Frank van Maarseveen for pointing this out.
|
|
|
|
|
|
|
|
* kernel: check if mandatory mount options ('fd', 'rootmode',
|
|
|
|
'user_id', 'group_id') are all given
|
|
|
|
|
2005-07-06 18:07:52 +08:00
|
|
|
* lib: simplify 'readdir_ino' handling
|
|
|
|
|
2005-07-06 21:34:02 +08:00
|
|
|
* lib: add mount options 'umask=M', 'uid=N', 'gid=N'
|
|
|
|
|
2005-07-04 02:03:11 +08:00
|
|
|
2005-07-03 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: clean up 'direct_io' code
|
|
|
|
|
2005-06-28 18:37:06 +08:00
|
|
|
2005-06-28 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add 'mount.fuse' written by Petr Klima
|
|
|
|
|
2005-06-28 20:22:57 +08:00
|
|
|
* '/dev/fuse' is created by 'make install' if does not yet exist
|
|
|
|
|
2005-06-20 21:48:42 +08:00
|
|
|
2005-06-20 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix UCLIBC compile error. Patch by Christian Magnusson
|
|
|
|
|
2005-06-08 18:26:34 +08:00
|
|
|
2005-06-08 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Enable the auto-loading of the module via access to the
|
|
|
|
corresponding device file. Patch by Takashi Iwai.
|
|
|
|
|
2005-06-08 18:41:36 +08:00
|
|
|
* Allow mounting a regular file (over a regular file) for
|
|
|
|
unprivleged users.
|
|
|
|
|
2005-06-08 19:01:17 +08:00
|
|
|
* Do not create temporary device file. Require "/dev/fuse" to
|
|
|
|
exist, and be readable/writable by the mounting user.
|
|
|
|
|
2005-06-02 18:29:00 +08:00
|
|
|
2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3.0
|
|
|
|
|
2005-06-02 17:05:00 +08:00
|
|
|
2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix serious information leak: if the filesystem returns a short
|
|
|
|
byte count to a read request, and there are non-zero number of
|
|
|
|
pages which are not filled at all, these pages will not be zeroed.
|
|
|
|
Hence the user can read out previous memory contents. Found by
|
|
|
|
Sven Tantau.
|
|
|
|
|
2005-05-27 17:12:43 +08:00
|
|
|
2005-05-27 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add "readdir_ino" mount option, which tries to fill in the d_ino
|
|
|
|
field in struct dirent. This mount option is ignored if "use_ino"
|
|
|
|
is used. It helps some programs (e.g. 'pwd' used over NFS from a
|
|
|
|
non-Linux OS). Patch by David Shaw.
|
|
|
|
|
2005-05-12 23:01:17 +08:00
|
|
|
2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3-rc1
|
|
|
|
|
2005-05-12 22:56:34 +08:00
|
|
|
2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* File save in krusader and other editors doesn't work with sshfs,
|
|
|
|
because open() is interrupted by a periodic signal, and open()
|
|
|
|
restarts forever, without any progress. This could just be fixed
|
|
|
|
in open(), but the problem is more generic: if signals are
|
|
|
|
received more often than the filesystem can get the request to
|
|
|
|
userspace, it will never finish. This is probably only a
|
|
|
|
theoretical problem, nevertheless I'm removing the possibility to
|
|
|
|
interrupt requests with anything other than SIGKILL, even before
|
|
|
|
being sent to userspace. Bugreport by Eduard Czimbalmos.
|
|
|
|
|
2005-05-09 21:29:17 +08:00
|
|
|
2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* libfuse: add "tree_lock" rwlock, that is locked for write in
|
|
|
|
rename, unlink and rmdir, and locked for read in all other
|
|
|
|
operations. This should fix the rename/release race reported by
|
|
|
|
Valient Gough and others. The solution is very coarse, a finer
|
|
|
|
grained locking scheme could be implemented, but it would be much
|
|
|
|
more complex. Let's see whether this is good enough.
|
|
|
|
|
2005-05-09 17:05:49 +08:00
|
|
|
2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3-pre7
|
|
|
|
|
2005-05-09 03:47:22 +08:00
|
|
|
2005-05-08 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Better fix for out of order FORGET messages. Now the
|
|
|
|
LOOKUP/FORGET messages are balanced exactly (one FORGET can
|
|
|
|
balance many lookups), so the order no longer matters. This
|
2005-05-09 17:05:49 +08:00
|
|
|
changes the kernel ABI slightly, but the library remains backward
|
2005-05-09 03:47:22 +08:00
|
|
|
compatible.
|
|
|
|
|
2005-05-06 18:10:38 +08:00
|
|
|
2005-05-06 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix abort for out of order FORGET messages. Again. Spotted by
|
|
|
|
Franco Broi again. Sorry :)
|
|
|
|
|
2005-04-29 16:16:20 +08:00
|
|
|
2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3-pre6
|
|
|
|
|
2005-04-29 16:03:24 +08:00
|
|
|
2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Make fusermount work with fuse kernel modules not yet supporting
|
|
|
|
the "group_id" option (added for the purpose of stricter
|
|
|
|
permission checking).
|
|
|
|
|
2005-04-28 17:55:09 +08:00
|
|
|
2005-04-28 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Check for hard-linked directories in lookup. This could cause
|
|
|
|
problems in the VFS, which assumes that such objects never exist.
|
|
|
|
|
|
|
|
* Make checking of permission for other users more strict. Now
|
|
|
|
the same privilege is required for the mount owner as for ptrace
|
|
|
|
on the process performing the filesystem operation.
|
2005-05-09 19:22:41 +08:00
|
|
|
|
2005-04-23 21:34:29 +08:00
|
|
|
2005-04-23 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3-pre5
|
|
|
|
|
2005-04-22 15:54:11 +08:00
|
|
|
2005-04-22 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add -msoft-float to kernel module compile flags for 2.4.X. This
|
|
|
|
is needed on certain architectures. Report from Chris Kirby
|
|
|
|
|
|
|
|
* Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
|
|
|
|
Reported by David Shaw
|
|
|
|
|
2005-04-22 20:04:55 +08:00
|
|
|
* Remove "allow_root" option from kernel module, and implement
|
|
|
|
it's functionality in the library
|
|
|
|
|
|
|
|
* Fix Oops caused by premature release of fuse_conn. Clean up
|
|
|
|
related code, to be more readable
|
|
|
|
|
2005-04-23 18:59:44 +08:00
|
|
|
* Sendfile should not use page cache if "direct_io" mount option
|
|
|
|
is given
|
|
|
|
|
2005-04-08 23:15:28 +08:00
|
|
|
2005-04-08 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix Oops in case of nfs export. Spotted by David Shaw
|
|
|
|
|
2005-04-09 00:39:09 +08:00
|
|
|
* Fix another Oops in case of write over nfs with direct_io turned
|
|
|
|
on. Again spotted by David Shaw
|
|
|
|
|
2005-04-07 23:56:13 +08:00
|
|
|
2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3-pre4
|
|
|
|
|
2005-04-07 23:40:21 +08:00
|
|
|
2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* lib: finalized new readdir() interface, which now supersedes the
|
|
|
|
getdir() method.
|
|
|
|
|
2005-04-04 01:44:54 +08:00
|
|
|
2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3-pre3
|
|
|
|
|
|
|
|
2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Implement backward compatibility with version 5 kernel ABI
|
|
|
|
|
2005-04-02 05:07:35 +08:00
|
|
|
2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3-pre2
|
|
|
|
|
|
|
|
2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: fix dirent offset handling
|
|
|
|
|
|
|
|
* lib: add readdir and releasedir methods
|
|
|
|
|
|
|
|
* lib: use fh field of fuse_file_info in opendir, readdir,
|
|
|
|
releasedir and fsyncdir methods
|
|
|
|
|
|
|
|
* lib: check kernel API version and bail out of it's old. This
|
|
|
|
will be properly fixed in the next release
|
|
|
|
|
|
|
|
2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.3-pre1
|
|
|
|
|
2005-04-01 03:59:12 +08:00
|
|
|
2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel API: add padding to structures, so 64bit and 32bit
|
|
|
|
compiler will return the same size
|
|
|
|
|
|
|
|
* kernel API: add offset field to fuse_dirent. This will allow
|
|
|
|
more sophisticated readdir interface for userspace
|
|
|
|
|
|
|
|
* kernel API: change major number to 6
|
|
|
|
|
|
|
|
* kernel: fix warnings on 64bit archs
|
|
|
|
|
|
|
|
* kernel: in case of API version mismatch, return ECONNREFUSED
|
|
|
|
|
2005-03-25 20:19:43 +08:00
|
|
|
2005-03-24 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: trivial cleanups
|
|
|
|
|
2005-03-21 20:09:04 +08:00
|
|
|
2005-03-21 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add fsyncdir() operation
|
|
|
|
|
2005-03-21 19:47:04 +08:00
|
|
|
2005-03-19 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: add locking to background list (fixes previous fix)
|
|
|
|
|
|
|
|
2005-03-18 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: fix bug which could cause leave busy inodes after
|
|
|
|
unmount, and Oops.
|
|
|
|
|
|
|
|
2005-03-08 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* examples: add -lpthread to link flags to work around valgrind
|
|
|
|
quirk
|
|
|
|
|
|
|
|
* lib: don't exit threads, so cancelation doesn't cause segfault
|
|
|
|
|
2005-03-05 01:28:51 +08:00
|
|
|
2005-03-04 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: fix nasty bug which could cause an Oops under certain
|
|
|
|
situations. Found by Magnus Johansson
|
|
|
|
|
2005-02-28 19:46:56 +08:00
|
|
|
2005-02-28 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
2005-03-01 01:32:16 +08:00
|
|
|
* libfuse: added opendir() method. This can be used in case
|
2005-02-28 19:46:56 +08:00
|
|
|
permission checking in getdir() is too late. Thanks to Usarin
|
|
|
|
Heininga for pointing out this deficiency
|
|
|
|
|
2005-03-01 01:32:16 +08:00
|
|
|
* libfuse: added init() and destroy() methods to fuse_operations
|
|
|
|
|
2005-02-28 19:46:56 +08:00
|
|
|
* kernel: llseek() method for files and directories made explicit
|
|
|
|
|
|
|
|
* kernel: fixed inode leak in NFS export in case of nodeid
|
|
|
|
wrapping
|
|
|
|
|
2005-02-16 01:04:50 +08:00
|
|
|
2005-02-15 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* libfuse: clean up some unitialized memory found with valgrind
|
|
|
|
|
2005-02-23 17:27:38 +08:00
|
|
|
* Add -lpthread to Libs in fuse.pc. Valgrind seems to need an
|
|
|
|
explicitly linked libpthread for applications
|
|
|
|
|
2005-02-10 15:35:05 +08:00
|
|
|
2005-02-10 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* fusermount: set umask, otherwise /etc/mtab will have
|
|
|
|
unpredictable permission. Spotted by Jindrich Kolorenc
|
|
|
|
|
|
|
|
* fusermount: set owner and group of /etc/mtab to original values
|
|
|
|
on unmount
|
2005-02-11 03:39:34 +08:00
|
|
|
|
|
|
|
* libfuse: add 'use_ino' option to help. Patch by Valient Gough
|
2005-05-09 19:22:41 +08:00
|
|
|
|
2005-02-08 00:10:49 +08:00
|
|
|
2005-02-07 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Cleaned up directory reading (temporary file is not used)
|
|
|
|
|
2005-02-02 21:31:14 +08:00
|
|
|
2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.2
|
|
|
|
|
2005-02-02 18:53:59 +08:00
|
|
|
2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix possible race when operation is interrupted
|
|
|
|
|
2005-01-28 17:58:19 +08:00
|
|
|
2005-01-28 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
2005-02-02 19:14:04 +08:00
|
|
|
* Fix compilation on 2.6.7
|
2005-01-28 17:58:19 +08:00
|
|
|
|
2005-01-27 04:43:41 +08:00
|
|
|
2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.2-pre6
|
|
|
|
|
2005-01-27 01:07:59 +08:00
|
|
|
2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix bug in link() operation which caused the wrong path to be
|
|
|
|
passed as the first argument. Found by Anton Altaparmakov
|
|
|
|
|
2005-01-21 19:18:35 +08:00
|
|
|
2005-01-21 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* LIB: fix double reply in readdir operation
|
|
|
|
|
2005-01-22 00:09:08 +08:00
|
|
|
* fusermount: fix uid checking bug. Patch by Adam Connell
|
|
|
|
|
2005-02-02 18:15:36 +08:00
|
|
|
* KERNEL: fix compile on various RedHat patched 2.4 kernels.
|
2005-01-22 00:46:58 +08:00
|
|
|
Patch by Keshava Gowda
|
|
|
|
|
2005-01-21 02:05:07 +08:00
|
|
|
2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* KERNEL: provide correct llseek semantics for fuse device (fixes
|
|
|
|
a bug on Progeny 2.4.20 kernel). Reported by Valient Gough
|
|
|
|
|
2005-01-20 16:48:11 +08:00
|
|
|
2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
|
|
|
|
|
2005-01-19 05:19:58 +08:00
|
|
|
2005-01-18 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
|
|
|
|
and RELEASEDIR. This ends the ugly hack of passing a file
|
|
|
|
descriptor to the kernel, and actually makes the code simpler.
|
|
|
|
|
2005-01-17 21:05:21 +08:00
|
|
|
2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.2-pre4
|
|
|
|
|
2005-01-17 17:46:28 +08:00
|
|
|
2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* fusermount: remove capability setting, which was the cause of
|
|
|
|
problems for some users. It seems that FS related capabilities
|
2005-02-02 19:14:04 +08:00
|
|
|
are removed by setfsuid(), so this isn't even needed.
|
2005-01-17 17:46:28 +08:00
|
|
|
|
2005-01-15 22:32:56 +08:00
|
|
|
2005-01-15 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* fix compilation on 2.4 kernels (reported by Valient Gough)
|
2005-01-15 17:42:01 +08:00
|
|
|
|
2005-01-15 22:32:56 +08:00
|
|
|
* fix failure to unmount bug (found by David Shaw)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2005-01-15 17:42:01 +08:00
|
|
|
* fusermount: improve parsing of /etc/fuse.conf
|
|
|
|
|
2005-01-13 20:11:49 +08:00
|
|
|
2005-01-13 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Remove 'mount_max' and 'user_allow_other' module options. These
|
|
|
|
are now checked by fusermount, and can be set in /etc/fuse.conf
|
|
|
|
|
|
|
|
* KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
|
|
|
|
|
2005-01-11 22:24:18 +08:00
|
|
|
2005-01-11 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* KERNEL: fix possible inode allocation problem, where
|
|
|
|
sizeof(struct inode) is not aligned (found by Mike Waychison)
|
|
|
|
|
|
|
|
* KERNEL: use new follow_link/put_link methods
|
|
|
|
|
|
|
|
* KERNEL: cosmetic fixes
|
|
|
|
|
2005-01-10 17:53:04 +08:00
|
|
|
2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.2-pre3
|
|
|
|
|
|
|
|
2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add missing code that was accidently left out
|
|
|
|
|
2005-01-10 04:22:53 +08:00
|
|
|
2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.2-pre2
|
|
|
|
|
2005-01-10 04:05:27 +08:00
|
|
|
2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Change "uid" mount option to "user_id" to avoid confusion with a
|
|
|
|
mount option "uid" commonly used by many filesystems
|
|
|
|
|
2005-01-09 20:27:41 +08:00
|
|
|
2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.2-pre1
|
|
|
|
|
|
|
|
2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* If FUSE is configured in the kernel, don't build it by default
|
|
|
|
|
2005-01-07 19:14:15 +08:00
|
|
|
2005-01-07 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Compile fix by Christian Magnusson
|
|
|
|
|
2005-01-06 00:19:10 +08:00
|
|
|
2005-01-05 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix compilation for 2.6.{0-5} kernels
|
|
|
|
|
2005-01-04 20:45:54 +08:00
|
|
|
2005-01-04 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* KERNEL: if request is interrupted, still keep reference to used
|
|
|
|
inode(s) and file, so that FORGET and RELEASE are not sent until
|
|
|
|
userspace finishes the request.
|
|
|
|
|
2005-01-05 03:24:31 +08:00
|
|
|
* remove /{sys,proc}/fs/fuse/version, and instead add an INIT
|
|
|
|
request with the same information, which is more flexible,
|
|
|
|
simpler, works on embedded systems.
|
|
|
|
|
2005-01-04 20:45:54 +08:00
|
|
|
2004-12-16 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* KERNEL ABI: update interface to make it independent of type
|
|
|
|
sizes. This will help on 64 bit architectures which can run
|
|
|
|
legacy 32 bit applications.
|
|
|
|
|
|
|
|
* KERNEL ABI: add "len" field to request headers. This will allow
|
|
|
|
sending/receiving requests in multiple chunks.
|
|
|
|
|
|
|
|
* KERNEL: handle file type change more intelligently
|
|
|
|
|
|
|
|
* LIB: "-o debug" option should disable backgrounding (fix by
|
|
|
|
Fabien Reygrobellet)
|
|
|
|
|
2004-12-13 23:22:28 +08:00
|
|
|
2004-12-13 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* KERNEL: invalidate dentry/attributes if interrupted request
|
|
|
|
could leave filesystem in an unknown state.
|
|
|
|
|
2004-12-12 19:45:24 +08:00
|
|
|
2004-12-12 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* KERNEL: lots of cleanups related to avoiding possible deadlocks.
|
|
|
|
These will cause some regressions, but stability is considered
|
|
|
|
more important. If any of these features turns out to be
|
|
|
|
important, it can be readded with the deadlock problems addressed.
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-12-12 19:45:24 +08:00
|
|
|
* Make all requests interruptible (only with SIGKILL currently).
|
|
|
|
This can be used to break any deadlock produced by the userspace
|
|
|
|
filesystem accessing it's own exported files. The RELEASE request
|
|
|
|
is special, because if it's interrupted before sending it to
|
|
|
|
userspace it is still sent, but the reply is not awaited.
|
|
|
|
|
|
|
|
* If request is interrupted before being sent to userspace, and if
|
|
|
|
it hasn't yet got any side effects, it is always restarted,
|
|
|
|
regardless of the SA_RESTART flag. This makes these interruptions
|
|
|
|
transparent to the process.
|
|
|
|
|
|
|
|
* Remove shared-writable mmap support, which was prone to an
|
|
|
|
out-of-memory deadlock situation
|
|
|
|
|
|
|
|
* Remove INVALIDATE userspace initiated request
|
|
|
|
|
|
|
|
* Make readpages() synchronous. Asynchronous requests are
|
|
|
|
deadlock prone, since they cannot be interrupted.
|
|
|
|
|
|
|
|
* Add readv/writev support to fuse device operations
|
|
|
|
|
|
|
|
* Remove some printks, which userspace FS can use for a DoS
|
|
|
|
against syslog
|
|
|
|
|
|
|
|
* Remove 'large_read' mount option from 2.6 in kernel, check it in
|
|
|
|
fusermount instead
|
|
|
|
|
|
|
|
* LIB: improve compatibility with a fuse.h header installed in
|
|
|
|
${prefix}/include which in turn includes the real header.
|
|
|
|
|
|
|
|
* LIB: improve compatibility by defining fuse_main() (which is now
|
|
|
|
not used), so old configure scripts find it.
|
|
|
|
|
2004-12-10 19:55:25 +08:00
|
|
|
2004-12-10 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* When mounting on a subdirectory of / don't duplicate slashes at
|
|
|
|
the beggining of path (spotted by David Shaw)
|
|
|
|
|
2004-12-10 01:30:59 +08:00
|
|
|
2004-12-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix bug causing garbage in mount options (spotted by David Shaw)
|
|
|
|
|
2004-12-07 18:04:24 +08:00
|
|
|
2004-12-07 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add 'writepage' flag to 'fuse_file_info'.
|
|
|
|
|
|
|
|
* More comments in fuse.h
|
|
|
|
|
2004-12-08 00:46:42 +08:00
|
|
|
* Get rid of double underscores
|
|
|
|
|
2004-12-05 05:20:05 +08:00
|
|
|
2004-12-04 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
|
|
|
|
|
|
|
|
* helper.c: add -ho option, which only displays the options not
|
|
|
|
the usage header. This can be used by filesystems which have
|
|
|
|
their own options.
|
|
|
|
|
2004-12-04 08:40:50 +08:00
|
|
|
2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add source compatibility to 2.1 and 1.1 APIs. To select betwen
|
|
|
|
versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
|
|
|
|
including the fuse header
|
|
|
|
|
|
|
|
* Add binary compatibility to 2.1 version of library with symbol
|
|
|
|
versioning
|
|
|
|
|
2005-01-10 04:05:27 +08:00
|
|
|
2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.1
|
|
|
|
|
2004-12-02 02:39:12 +08:00
|
|
|
2004-12-01 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: clean up writing functions
|
|
|
|
|
|
|
|
* kernel: no allocation on write in direct_io mode
|
|
|
|
|
2004-12-02 02:56:39 +08:00
|
|
|
* move linux/fuse.h to fuse_kernel.h
|
|
|
|
|
2004-12-01 02:25:20 +08:00
|
|
|
2004-11-30 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: clean up reading functions
|
|
|
|
|
2004-11-30 00:53:44 +08:00
|
|
|
2004-11-29 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* kernel: make readpage() uninterruptible
|
|
|
|
|
2004-11-30 08:00:02 +08:00
|
|
|
* kernel: check readonly filesystem flag in fuse_permission
|
|
|
|
|
|
|
|
* lib: don't die if version file not found and new style device
|
|
|
|
exists
|
|
|
|
|
|
|
|
* lib: add '-r' option, which is short for '-o ro'
|
|
|
|
|
|
|
|
* fusermount: simplify device opening
|
|
|
|
|
2004-11-30 00:53:44 +08:00
|
|
|
* kernel: when direct_io is turend on, copy data directly to
|
|
|
|
destination without itermediate buffer. More efficient and safer,
|
|
|
|
since no allocation is done.
|
|
|
|
|
|
|
|
* fusermount: fix warning if fuse module is not loaded
|
2004-11-30 07:43:44 +08:00
|
|
|
|
|
|
|
* kernel: use /dev/fuse on 2.4 too
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-11-26 20:15:06 +08:00
|
|
|
2004-11-26 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* libfuse API change: open, read, write, flush, fsync and release
|
|
|
|
are passed a 'struct fuse_file_info' pointer containing the open
|
|
|
|
flags (open and release), and the file handle. Verion changed to
|
|
|
|
3.0.
|
|
|
|
|
2004-11-24 06:32:16 +08:00
|
|
|
2004-11-23 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* More cleanups in the kernel
|
|
|
|
|
|
|
|
* The 10,229 charater device number has been assigned for FUSE
|
|
|
|
|
|
|
|
* Version file checking fix (reported by Christian Magnusson)
|
|
|
|
|
|
|
|
* fusermount: opening the fuse device now doesn't need /sys.
|
|
|
|
|
|
|
|
* Optimize reading by controlling the maximum readahead based on
|
|
|
|
the 'max_read' mount option
|
|
|
|
|
|
|
|
* fixes for UCLIBC (Christian Magnusson)
|
|
|
|
|
2004-11-20 19:12:21 +08:00
|
|
|
2004-11-19 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Cleaned up kernel in preparation for merge into mainline:
|
|
|
|
|
|
|
|
* Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
|
|
|
|
|
|
|
|
* Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
|
|
|
|
|
|
|
|
* __user annotations for sparse
|
|
|
|
|
|
|
|
* allocate individual pages instead of kmalloc in fuse_readdir,
|
|
|
|
fuse_read and fuse_write.
|
|
|
|
|
|
|
|
* Fix NFS export in case "use_ino" mount option is given
|
|
|
|
|
2004-11-20 19:18:34 +08:00
|
|
|
* Make libfuse and fusermount compatible with future versions
|
|
|
|
|
|
|
|
* fusermount: properly add mount options to /etc/mtab
|
|
|
|
|
|
|
|
2004-11-15 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* fusermount: do not resolve last component of mountpoint on if it
|
|
|
|
is '.' or '..'. This new path resolvation is now done on mount as
|
|
|
|
well as unmount. This enables relative paths to work on unmount.
|
|
|
|
|
|
|
|
* fusermount: parse common mount options like "ro", "rw", etc...
|
|
|
|
|
|
|
|
* Allow module params to be changed through sysfs
|
|
|
|
|
2004-11-14 17:19:51 +08:00
|
|
|
2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 2.1-pre1
|
|
|
|
|
|
|
|
2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix bug in fuse_readpages() causing Oops in certain situations.
|
|
|
|
Bug found by Vincenzo Ciancia.
|
|
|
|
|
|
|
|
* Fix compilation with kernels versions > 2.6.9.
|
|
|
|
|
2004-11-11 18:33:58 +08:00
|
|
|
2004-11-11 Miklos Szeredi <miklos@szeredi.hu>
|
2004-11-10 19:52:26 +08:00
|
|
|
|
2004-11-11 18:33:58 +08:00
|
|
|
* Check kernel interface version in fusermount to prevent
|
|
|
|
strangeness in case of mismatch.
|
2004-11-10 19:52:26 +08:00
|
|
|
|
2004-11-11 22:44:04 +08:00
|
|
|
* No need to allocate fuse_conn until actual mount happens
|
|
|
|
|
|
|
|
* Fix potential race between umount and fuse_invalidate
|
|
|
|
|
|
|
|
* Check superblock of proc file in addition to inode number
|
|
|
|
|
2004-11-14 17:19:51 +08:00
|
|
|
* Fix race between request_send_noreply() and fuse_dev_release()
|
2004-11-11 22:44:04 +08:00
|
|
|
|
2004-11-10 19:52:26 +08:00
|
|
|
2004-11-10 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Separate configure for the kernel directory
|
|
|
|
|
2004-11-11 18:33:58 +08:00
|
|
|
* Don't allow write to return more than 'count'
|
|
|
|
|
|
|
|
* Extend kernel interface for future use
|
|
|
|
|
2004-11-10 19:52:26 +08:00
|
|
|
2004-11-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix 'makeconf.sh' to use autoreconf if available
|
|
|
|
|
2004-11-08 22:48:52 +08:00
|
|
|
2004-11-08 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
2004-11-09 01:32:25 +08:00
|
|
|
* Add ino argument to 'fuse_dirfil_t'. NOTE: This breaks source
|
|
|
|
compatibility with earlier versions. To compile earier versions
|
|
|
|
just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
|
|
|
|
Do not use the "use_ino" mount flag with filesystems compiled with
|
|
|
|
FUSE_DIRFIL_COMPAT.
|
2004-11-09 05:11:53 +08:00
|
|
|
|
|
|
|
* Add pkg-config support. To compile a FUSE based filesystem you
|
|
|
|
can do "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
|
|
|
|
or similar. Note, that the PKG_CONFIG_PATH environment variable
|
|
|
|
usually needs to be set to "/usr/local/lib/pkgconfig".
|
|
|
|
|
|
|
|
* fuse.h is now installed in ${prefix}/include/fuse/
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-11-03 01:32:03 +08:00
|
|
|
2004-11-02 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Added "use_ino" mount option. This enables the filesystems to
|
|
|
|
set the st_ino field on files
|
|
|
|
|
2004-11-01 18:57:41 +08:00
|
|
|
2004-11-01 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix compile problems with ancient (<=2.4.18) kernels (reported
|
|
|
|
by Jeremy Smith)
|
|
|
|
|
2004-11-02 07:15:20 +08:00
|
|
|
* Add "allow_root" mount option. Patch by Yaroslav Rastrigin
|
|
|
|
|
|
|
|
* Clear the 'exited' flag when mail loop is finished
|
|
|
|
|
2004-10-29 04:24:58 +08:00
|
|
|
2004-10-28 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Make xattr functions work under 2.6 (bug found by Vincenzo
|
|
|
|
Ciancia)
|
|
|
|
|
2004-10-27 05:32:13 +08:00
|
|
|
2004-10-26 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Reset request in fuse_flush() (bugreport by David Shaw)
|
|
|
|
|
2004-10-21 17:35:10 +08:00
|
|
|
2004-10-21 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
2004-10-22 00:24:29 +08:00
|
|
|
* fuse_main() now does not exit on error, rather it returns an
|
2004-10-21 17:35:10 +08:00
|
|
|
error code
|
|
|
|
|
2004-10-21 17:59:13 +08:00
|
|
|
* Exported __fuse_setup() and __fuse_teardown() functions, which
|
2004-10-21 17:35:10 +08:00
|
|
|
make it easier to implement a custom event loop.
|
|
|
|
|
2004-10-21 17:59:13 +08:00
|
|
|
* Use daemon() call to background the filesystem after mounting.
|
|
|
|
This function closes the standard input, output and error and
|
|
|
|
changes the current working directory to "/".
|
|
|
|
|
2004-10-14 21:33:39 +08:00
|
|
|
2004-10-14 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Released 1.9
|
|
|
|
|
2004-10-10 15:56:12 +08:00
|
|
|
2004-10-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Don't allow fuse_flush() to be interrupted (bug found by David
|
|
|
|
Shaw)
|
|
|
|
|
2004-09-27 14:54:49 +08:00
|
|
|
2004-09-27 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add PID to fuse_context. Patch by Steven James
|
|
|
|
|
2004-09-28 02:50:11 +08:00
|
|
|
* Change file handle type to 'unsigned long' in kernel interface
|
|
|
|
|
2004-09-22 16:48:26 +08:00
|
|
|
2004-09-22 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* A slight API change: fuse_get_context() doesn't need the "fuse"
|
|
|
|
pointer, but the returned context contains it instead. The
|
|
|
|
fuse_get() function is not needed anymore, so it's removed.
|
2004-09-23 00:47:40 +08:00
|
|
|
|
|
|
|
* Fix mounting and umounting FUSE filesystem under another FUSE
|
|
|
|
filesystem by non-root (bug spotted by Valient Gough)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-09-21 21:40:38 +08:00
|
|
|
2004-09-21 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix deadlock in case of memory allocation failure. Patch by
|
|
|
|
Christian Magnusson
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-09-16 16:42:40 +08:00
|
|
|
2004-09-16 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Check memory allocation failures in libfuse
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-09-14 15:13:45 +08:00
|
|
|
2004-09-14 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Check temporary file creation failure in do_getdir(). Bug
|
|
|
|
spotted by Terje Oseberg
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-09-13 19:47:59 +08:00
|
|
|
2004-09-13 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Allow "large_read" option for 2.6 kernels but warn of deprecation
|
2004-09-13 20:00:49 +08:00
|
|
|
|
|
|
|
* Make requests non-interruptible so race with FORGET is avoided.
|
|
|
|
This is only a temporary solution
|
2004-09-13 22:56:57 +08:00
|
|
|
|
|
|
|
* Support compiling FUSE kernel module on 2.4.x UML kernels
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-09-09 16:44:01 +08:00
|
|
|
2004-09-09 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix bug in case two FORGETs for the same node are executed in
|
|
|
|
the wrong order. Bug spotted and endured for months by Franco
|
|
|
|
Broi, and logfile for solution provided by Terje Oseberg
|
|
|
|
|
2004-09-03 02:13:57 +08:00
|
|
|
2004-09-01 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add -D_REENTRANT to the compile flags
|
|
|
|
|
|
|
|
* Add documentation of fuse internals by Terje Oseberg
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-08-16 21:29:11 +08:00
|
|
|
2004-08-16 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Change release method to be non-interruptible. Fixes bug
|
|
|
|
causing missing release() call when program which has opened files
|
|
|
|
is killed (reported by Franco Broi and David Shaw)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-29 17:27:49 +08:00
|
|
|
2004-07-29 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add fuse_invalidate() to library API
|
|
|
|
|
2004-07-27 03:38:45 +08:00
|
|
|
2004-07-26 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Check permissions in setattr if 'default_permissions' flag is
|
|
|
|
set. Bug spotted by Damjan Lango
|
|
|
|
|
2004-07-24 21:47:44 +08:00
|
|
|
2004-07-24 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
2004-07-25 03:56:16 +08:00
|
|
|
* 'large_read' mount option removed for 2.6 kernels, since the
|
|
|
|
default (dynamic read size) is better
|
|
|
|
|
|
|
|
* Extend kernel API with file handles. A file handle is returned
|
|
|
|
by open, and passed to read, write, flush, fsync and release.
|
|
|
|
This is currently only used for debug output in the library.
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-25 03:56:16 +08:00
|
|
|
* Security changes:
|
|
|
|
|
|
|
|
* Change the current directory to the mountpoint before checking
|
|
|
|
the permissions and mount filesystem on "."
|
|
|
|
|
|
|
|
* By default don't modprobe the fuse module for non-root. The old
|
|
|
|
behavior can be restored with the '--enable-auto-modprobe' flag of
|
|
|
|
./configure
|
|
|
|
|
|
|
|
* By default don't allow shared writable mappings for non-root.
|
|
|
|
The old behavior can be restored with the 'user_mmap=1' module
|
|
|
|
parameter
|
2004-07-24 21:47:44 +08:00
|
|
|
|
2004-07-24 01:16:29 +08:00
|
|
|
2004-07-23 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Clean up mount option passing to fusermount and to fuse_new()
|
|
|
|
BEWARE: this changes the userspace API slightly, and the command
|
|
|
|
line usage of programs using fuse_main()
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-20 22:22:26 +08:00
|
|
|
2004-07-20 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Optimize reading under 2.6 kernels by issuing multiple page
|
|
|
|
asynchronous read requests
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-18 19:32:59 +08:00
|
|
|
2004-07-18 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Only use redirty_page_for_writepage() for kernels >= 2.6.6
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-17 00:17:02 +08:00
|
|
|
2004-07-16 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Separate directory entry and inode attribute validity timer
|
|
|
|
|
|
|
|
* New write semaphore to stop page writeback during truncate
|
|
|
|
|
|
|
|
* Fsync now waits for all writes to complete before sending the
|
|
|
|
request
|
|
|
|
|
|
|
|
* Optimization: if a page is completely written by
|
|
|
|
fuse_commit_write(), clear the dirty flag and set the uptodate
|
|
|
|
flag for that page
|
|
|
|
|
2004-07-17 02:27:50 +08:00
|
|
|
* Some memory cleanup at exit
|
|
|
|
|
2004-07-13 23:36:52 +08:00
|
|
|
2004-07-13 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
|
2004-07-14 04:23:03 +08:00
|
|
|
disable the "hide if open" behavior of unlink/rename.
|
|
|
|
|
|
|
|
* If temporary buffer allocation fails in raw read, fall back to a
|
|
|
|
smaller buffer
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-12 23:55:11 +08:00
|
|
|
2004-07-12 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* Fix bug in do_open() in libfuse: open count was incremented
|
|
|
|
after the reply is sent so it could race with unlink/forget and
|
|
|
|
cause an abort.
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-12 19:52:24 +08:00
|
|
|
2004-07-08 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
|
|
|
|
* When performing create or remove operation, refresh the parent's
|
|
|
|
attributes on next revalidate, as i_nlink (and maybe size/time)
|
|
|
|
could be inacurate.
|
|
|
|
|
|
|
|
* Use redirty_page_for_writepage() in fuse_writepage() for skipped
|
|
|
|
pages (2.6 only)
|
|
|
|
|
|
|
|
* Set set_page_dirty address space operation (2.6 only)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-07-06 Miklos Szeredi <miklos@szeredi.hu>
|
2004-07-07 06:27:36 +08:00
|
|
|
|
|
|
|
* Minor fix in read: print debug info even if read size is zero
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-07-04 Miklos Szeredi <miklos@szeredi.hu>
|
2004-07-05 05:21:08 +08:00
|
|
|
|
|
|
|
* Fix race between truncate and writepage (fsx-linux now runs
|
|
|
|
without error)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-07-02 Miklos Szeredi <miklos@szeredi.hu>
|
2004-07-02 17:22:50 +08:00
|
|
|
|
|
|
|
* Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
|
|
|
|
by Mattias Wadman)
|
|
|
|
|
|
|
|
* Added option for direct read/write (-r)
|
|
|
|
|
|
|
|
* Fix revalidate time setting for newly created inodes
|
|
|
|
|
2004-07-03 00:20:45 +08:00
|
|
|
* Remove uid==0 check for '-x' option in fusermount (kernel checks
|
|
|
|
this)
|
|
|
|
|
|
|
|
* fuse_main() only installs handlers for signals (out of INT, HUP,
|
|
|
|
TERM, PIPE), for which no handler has yet been installed
|
|
|
|
|
|
|
|
* Add module option 'user_allow_other' which if set to non-zero
|
|
|
|
will allow non root user to specify the 'allow_other' mount option
|
|
|
|
('-x' option of fusermount)
|
|
|
|
|
2004-07-03 05:22:37 +08:00
|
|
|
* Fix deadlock between page writeback completion and truncate
|
|
|
|
(bug found by Valient Gough with the fsx-linux utility)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-07-01 Miklos Szeredi <miklos@szeredi.hu>
|
2004-07-02 17:22:50 +08:00
|
|
|
|
|
|
|
* Change passing fuse include dir to 2.6 kernel make system more
|
2004-07-03 00:20:45 +08:00
|
|
|
robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
|
|
|
|
kernel)
|
2004-07-02 17:22:50 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-30 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-30 19:13:41 +08:00
|
|
|
|
|
|
|
* Acquire inode->i_sem before open and release methods to prevent
|
|
|
|
concurrent rename or unlink operations.
|
|
|
|
|
2004-06-30 19:34:56 +08:00
|
|
|
* Make __fuse_read_cmd() read only one command. This allows
|
|
|
|
multiplexing the fuse file descriptor with other event sources
|
|
|
|
using select() or poll() (patch by Jeff Harris)
|
|
|
|
|
|
|
|
* Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-27 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-29 00:52:16 +08:00
|
|
|
|
|
|
|
* Fix file offset wrap around at 4G when doing large reads
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-27 05:11:25 +08:00
|
|
|
|
|
|
|
* Fix memory leak in open (Valient Gough)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-25 05:00:00 +08:00
|
|
|
|
|
|
|
* Add "close after delete" support to libfuse (patch by Valient
|
|
|
|
Gough)
|
|
|
|
|
|
|
|
* Cancel all worker threads before exit in multithreaded mode
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-23 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-23 13:57:30 +08:00
|
|
|
|
|
|
|
* Fix locking bugs
|
2004-06-23 21:54:33 +08:00
|
|
|
|
|
|
|
* Don't send reply to RELEASE
|
2004-06-24 02:52:50 +08:00
|
|
|
|
|
|
|
* Work with newer libtool (1.5a)
|
|
|
|
|
|
|
|
* Check for st_atim member of struct stat
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-22 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-23 02:46:02 +08:00
|
|
|
|
|
|
|
* No request allocation needed on inode and file release
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-21 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-21 17:45:30 +08:00
|
|
|
|
|
|
|
* Fix possible inode leak in userspace in case of unfinished
|
|
|
|
lookup/mknod/mkdir/symlink/link operation.
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-20 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-20 16:57:39 +08:00
|
|
|
|
|
|
|
* Fix some races and cleanups in fuse_read_super()
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-19 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-20 06:42:38 +08:00
|
|
|
|
|
|
|
* Requests are allocated at open time
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-06-03 Miklos Szeredi <miklos@szeredi.hu>
|
2004-06-03 21:21:08 +08:00
|
|
|
|
|
|
|
* Build shared library as well as static (using libtool)
|
|
|
|
|
|
|
|
* Change FUSE_MINOR_VERSION from 1 to 0. I know it's illegal but
|
|
|
|
there has not been a release with the previous minor number, and I
|
|
|
|
hope nobody is using it for anything.
|
2004-06-03 21:52:40 +08:00
|
|
|
|
|
|
|
* Change fuse_main(), so that default behavior is to go into
|
|
|
|
background if mount is successful. '-f' and '-d' options disable
|
|
|
|
backgrounding. This fixes the "Why does my FUSE daemon hang?"
|
|
|
|
newbie complaint.
|
2004-06-03 22:45:04 +08:00
|
|
|
|
|
|
|
* Cache ENOSYS (function not implemented) errors on *xattr, flush
|
|
|
|
and fsync
|
2004-06-04 01:52:32 +08:00
|
|
|
|
|
|
|
* Don't call getdir method from open() only from first readdir().
|
|
|
|
Open is sometimes just used to store the current directory
|
|
|
|
(e.g. find)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-05-18 Miklos Szeredi <miklos@szeredi.hu>
|
2004-05-18 16:45:28 +08:00
|
|
|
|
|
|
|
* Added flush() call
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-05-04 Miklos Szeredi <miklos@szeredi.hu>
|
2004-05-04 16:49:16 +08:00
|
|
|
|
|
|
|
* Extended attributes support for 2.4 (patch by Cody Pisto)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-04-20 Miklos Szeredi <miklos@szeredi.hu>
|
2004-04-20 16:25:43 +08:00
|
|
|
|
|
|
|
* Fixed parser with modversions (Mattias Wadman)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-04-19 Miklos Szeredi <miklos@szeredi.hu>
|
2004-04-19 18:24:41 +08:00
|
|
|
|
|
|
|
* Added mount option parser to 2.4 build
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-04-13 Miklos Szeredi <miklos@szeredi.hu>
|
2004-04-13 18:49:54 +08:00
|
|
|
|
|
|
|
* Replaced binary mount data with text options
|
|
|
|
|
|
|
|
* Show FUSE specific mount options in /proc/mounts
|
|
|
|
|
|
|
|
* Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-04-09 Miklos Szeredi <miklos@szeredi.hu>
|
2004-04-10 01:48:32 +08:00
|
|
|
|
|
|
|
* Check some limits so userspace won't get too big requests
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-04-05 Miklos Szeredi <miklos@szeredi.hu>
|
2004-04-05 19:24:24 +08:00
|
|
|
|
|
|
|
* Kill compile warning
|
|
|
|
|
|
|
|
* Upgraded user-mount patch for 2.6.5
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-04-02 Miklos Szeredi <miklos@szeredi.hu>
|
2004-04-02 22:58:22 +08:00
|
|
|
|
|
|
|
* Add detection of user-mode-linux to configure
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-03-31 Miklos Szeredi <miklos@szeredi.hu>
|
2004-03-31 18:19:18 +08:00
|
|
|
|
|
|
|
* fixed zero size case for getxattr and listxattr
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-03-30 Miklos Szeredi <miklos@szeredi.hu>
|
2004-03-30 15:24:29 +08:00
|
|
|
|
|
|
|
* new fusermount flag '-z': lazy unmount, default is not lazy
|
|
|
|
|
2004-03-30 23:17:26 +08:00
|
|
|
* Extended attributes operations added (getxattr, setxattr,
|
|
|
|
listxattr, removexattr)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-03-25 Miklos Szeredi <miklos@szeredi.hu>
|
2004-03-25 19:17:52 +08:00
|
|
|
|
|
|
|
* If filesystem doesn't define a statfs operation, then an
|
|
|
|
all-zero default statfs is returned instead of ENOSYS
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-03-24 Miklos Szeredi <miklos@szeredi.hu>
|
2004-03-24 17:19:27 +08:00
|
|
|
|
|
|
|
* Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-03-09 Miklos Szeredi <miklos@szeredi.hu>
|
2004-03-09 18:54:17 +08:00
|
|
|
|
|
|
|
* Fix for uClinux (Christian Magnusson)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-03-02 Miklos Szeredi <miklos@szeredi.hu>
|
2004-03-02 19:11:24 +08:00
|
|
|
|
2004-03-03 00:18:30 +08:00
|
|
|
* fuse_main() adds "-n progname" to the fusermount command line
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-03-02 19:11:24 +08:00
|
|
|
* More kernel interface changes:
|
|
|
|
|
|
|
|
* Lookup/getattr return cache timeout values
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-25 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-25 16:39:42 +08:00
|
|
|
|
|
|
|
* Clean up option parsing in fuse_main()
|
|
|
|
|
2004-02-25 17:19:29 +08:00
|
|
|
* Added fuse_get() function which returns the fuse object created
|
|
|
|
by fuse_main()
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-20 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-20 22:10:49 +08:00
|
|
|
|
2004-02-21 00:38:45 +08:00
|
|
|
* removed old way of mounting (fusermount mountpoint program)
|
|
|
|
|
2004-02-20 22:10:49 +08:00
|
|
|
* more kernel interface changes:
|
|
|
|
|
|
|
|
* added nanosecond precision to file times
|
|
|
|
|
2004-02-21 00:38:45 +08:00
|
|
|
* removed interface version from mount data
|
|
|
|
|
|
|
|
* added /proc/fs/fuse/version which contains MAJOR.MINOR
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-19 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-19 22:23:27 +08:00
|
|
|
|
|
|
|
* statfs library API changed to match other methods. Since this
|
|
|
|
is not backward compatible FUSE_MAJOR_VERSION is changed to 2
|
|
|
|
|
2004-02-20 00:55:40 +08:00
|
|
|
* kernel interface changes follow:
|
|
|
|
|
|
|
|
* statfs changed to 64 bits, added 'bavail' field
|
|
|
|
|
|
|
|
* add generation number to lookup result
|
|
|
|
|
|
|
|
* optimized mknod/mkdir/symlink/link (no separate lookup is
|
|
|
|
needed)
|
|
|
|
|
|
|
|
* rdev size increased to 32 bits for mknod
|
|
|
|
|
|
|
|
* kernel interface version changed to 3.1
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-18 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-18 21:29:36 +08:00
|
|
|
|
|
|
|
* user-mount upgraded for 2.6.3 kernel
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-17 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-17 16:57:29 +08:00
|
|
|
|
|
|
|
* Added user-mount.2.6.2-rc3.patch
|
|
|
|
|
|
|
|
* Add FS_SAFE flag to fuse filesystem
|
|
|
|
|
|
|
|
* fusermount should allow (un)mounting for non-root even if not
|
|
|
|
suid-root
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-12 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-12 21:41:30 +08:00
|
|
|
|
|
|
|
* Remove MS_PERMISSION mount flag (that means something else now)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-10 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-10 17:36:07 +08:00
|
|
|
|
|
|
|
* Added check for i_size_read/write functions to configure.in
|
|
|
|
(patch by Valient Gough)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-06 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-06 17:48:51 +08:00
|
|
|
|
|
|
|
* Fixed writing >= 2G files
|
2004-02-06 21:52:00 +08:00
|
|
|
|
|
|
|
* Check file size on open (with generic_file_open())
|
2004-02-06 23:29:22 +08:00
|
|
|
|
|
|
|
* Readpage calls flush_dcache_page() after storing data
|
|
|
|
|
|
|
|
* Use i_size_read/write for accessing inode->i_size
|
2004-02-07 01:02:08 +08:00
|
|
|
|
|
|
|
* Make loopback mount of a fuse file work
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-02-04 Miklos Szeredi <miklos@szeredi.hu>
|
2004-02-04 19:06:17 +08:00
|
|
|
|
|
|
|
* Released 1.1
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-29 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-29 19:29:18 +08:00
|
|
|
|
|
|
|
* Properly check if the inode exists in fuse_invalidate
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-27 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-27 22:54:47 +08:00
|
|
|
|
|
|
|
* Added -q option for fusermount
|
|
|
|
|
|
|
|
* fuse_unmount() now uses -q option of fusermount, so no error is
|
|
|
|
printed if the cause of the program exit is that the filesystem
|
|
|
|
has already been unmounted
|
|
|
|
|
2004-01-28 01:04:59 +08:00
|
|
|
* Fix i_nlink correctness after rmdir/unlink
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-26 22:43:12 +08:00
|
|
|
|
|
|
|
* Released 1.1-pre2
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-26 19:28:44 +08:00
|
|
|
|
|
|
|
* Fix typo (thanks Marcos Dione)
|
2004-01-26 22:43:12 +08:00
|
|
|
|
|
|
|
* Compile fixes for 2.4 kernels
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-23 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-26 19:28:44 +08:00
|
|
|
|
|
|
|
* Fix CONFIG_MODVERSIONS compile on 2.6
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-22 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-26 19:28:44 +08:00
|
|
|
|
|
|
|
* Write all pending data before a RELEASE operation
|
|
|
|
|
|
|
|
* Suppress 'Bad file descriptor' warning on exit
|
|
|
|
|
|
|
|
* Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
|
2004-01-26 22:43:12 +08:00
|
|
|
get confused with '-d' of fuse_main() (sorry about this change)
|
2004-01-26 19:28:44 +08:00
|
|
|
|
2004-01-26 22:43:12 +08:00
|
|
|
* New fusermount option '-l' which enables big reads. Big reads
|
|
|
|
are now disabled by default.
|
2004-01-26 19:28:44 +08:00
|
|
|
|
|
|
|
* fuse_main() can accept fusermount arguments after a '--'
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-19 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-20 02:20:49 +08:00
|
|
|
|
|
|
|
* Support for exporting filesystem over NFS (see README.NFS)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-14 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-15 00:56:49 +08:00
|
|
|
|
|
|
|
* Support non-blocking writepage on 2.6. This makes FUSE behave
|
|
|
|
much more nicely in low-memory situations
|
|
|
|
|
|
|
|
* Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
|
|
|
|
(Note: the mknod method does not yet use 32bit device number)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-13 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-13 23:33:12 +08:00
|
|
|
|
|
|
|
* Code cleanups
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-07 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-08 00:49:12 +08:00
|
|
|
|
|
|
|
* Released 1.1-pre1
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-06 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-07 20:16:45 +08:00
|
|
|
|
|
|
|
* Integrated 2.6 kernel support patch by Michael Grigoriev
|
|
|
|
|
|
|
|
* Improvements and cleanups for 2.6 kernels
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2004-01-05 Miklos Szeredi <miklos@szeredi.hu>
|
2004-01-05 23:07:12 +08:00
|
|
|
|
2005-02-02 19:14:04 +08:00
|
|
|
* Added -d option to fusermount
|
2004-01-05 23:07:12 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-12-15 Miklos Szeredi <miklos@szeredi.hu>
|
2003-12-15 20:11:33 +08:00
|
|
|
|
|
|
|
* Added major+minor version to library API, and minor version to
|
|
|
|
kernel API
|
|
|
|
|
2003-12-13 10:05:46 +08:00
|
|
|
2003-12-13 David McNab <david@rebirthing.co.nz>
|
|
|
|
|
|
|
|
* Implemented fsync support in examples/example.py
|
|
|
|
|
|
|
|
* Implemented 'fsync' and 'statfs' methods in python
|
|
|
|
interface
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-12-12 Miklos Szeredi <miklos@szeredi.hu>
|
2003-12-12 19:53:31 +08:00
|
|
|
|
2005-02-02 19:14:04 +08:00
|
|
|
* Make it compile on 2.4.19.
|
2003-12-12 19:53:31 +08:00
|
|
|
|
2003-12-12 22:06:41 +08:00
|
|
|
* Add fsync operation (write file failed on xemacs & vi)
|
2003-12-12 19:53:31 +08:00
|
|
|
|
2003-12-12 06:49:22 +08:00
|
|
|
2003-12-12 David McNab <david@rebirthing.co.nz>
|
|
|
|
|
|
|
|
* Added distutils support to the python module, as per standard
|
|
|
|
python development practice
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-12-11 Miklos Szeredi <miklos@szeredi.hu>
|
2003-12-11 22:27:57 +08:00
|
|
|
|
|
|
|
* 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
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2003-12-11 22:27:57 +08:00
|
|
|
* 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
|
|
|
|
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-11-04 Miklos Szeredi <miklos@szeredi.hu>
|
2003-11-04 21:46:32 +08:00
|
|
|
|
|
|
|
* Fix kernel version detection (again). Bugreport by Peter Levart
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-11-03 Miklos Szeredi <miklos@szeredi.hu>
|
2003-11-04 03:32:14 +08:00
|
|
|
|
|
|
|
* Applied read combining patch by Michael Grigoriev (tested by
|
|
|
|
Valient Gough and Vincent Wagelaar)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-10-22 Miklos Szeredi <miklos@szeredi.hu>
|
2003-10-22 19:11:57 +08:00
|
|
|
|
|
|
|
* Mtab handling fix in fusermount by "Valient Gough" (SF patch
|
|
|
|
#766443)
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-10-13 Miklos Szeredi <miklos@szeredi.hu>
|
2003-10-13 18:08:06 +08:00
|
|
|
|
|
|
|
* Error code fixes in kernel module
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-10-04 Miklos Szeredi <miklos@szeredi.hu>
|
2003-10-05 01:31:38 +08:00
|
|
|
|
|
|
|
* kernel version detection fix
|
|
|
|
|
|
|
|
* fusermount now uses "lazy" umount option
|
|
|
|
|
|
|
|
* fusermount can use modprobe with module-init-tools
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-09-08 Miklos Szeredi <miklos@szeredi.hu>
|
2003-09-08 19:14:11 +08:00
|
|
|
|
|
|
|
* Integrated caching patch by Michael Grigoriev
|
|
|
|
|
|
|
|
* Added "Filesystems" file with descriptions of projects using
|
|
|
|
FUSE
|
|
|
|
|
2003-09-08 21:52:25 +08:00
|
|
|
* Added patch by Michael Grigoriev to allow compliation of FUSE
|
|
|
|
kernel module for 2.6 kernels
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-06-02 Miklos Szeredi <miklos@szeredi.hu>
|
2003-06-02 14:12:27 +08:00
|
|
|
|
|
|
|
* And another spec-file fix by Achim Settelmeier
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-05-26 Miklos Szeredi <miklos@szeredi.hu>
|
2003-05-26 15:12:57 +08:00
|
|
|
|
|
|
|
* Spec-file fix by Achim Settelmeier
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-03-10 Miklos Szeredi <miklos@szeredi.hu>
|
2003-03-10 17:35:34 +08:00
|
|
|
|
2004-11-03 03:14:14 +08:00
|
|
|
* Fix umount oops (found by Samuli Kärkkäinen)
|
2003-03-10 17:35:34 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-03-05 Miklos Szeredi <miklos@szeredi.hu>
|
2003-03-05 16:29:58 +08:00
|
|
|
|
|
|
|
* Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-03-04 Miklos Szeredi <miklos@szeredi.hu>
|
2003-03-04 17:37:20 +08:00
|
|
|
|
|
|
|
* Updated fuse.spec file (Achim Settelmeier)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-02-19 Miklos Szeredi <miklos@szeredi.hu>
|
2003-02-20 00:05:06 +08:00
|
|
|
|
|
|
|
* Version 1.0 released
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2003-02-12 Miklos Szeredi <miklos@szeredi.hu>
|
2003-02-13 17:53:33 +08:00
|
|
|
|
|
|
|
* SuSE compilation fix by Juan-Mariano de Goyeneche
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-12-10 Miklos Szeredi <miklos@szeredi.hu>
|
2002-12-10 20:26:00 +08:00
|
|
|
|
|
|
|
* The release() VFS call is now exported to the FUSE interface
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-12-05 Miklos Szeredi <miklos@szeredi.hu>
|
2002-12-05 22:23:01 +08:00
|
|
|
|
|
|
|
* 64 bit file offset fixes in the fuse kernel module
|
|
|
|
|
|
|
|
* Added function 'fuse_exit()' which can be used to exit the main
|
|
|
|
loop
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-12-03 Miklos Szeredi <miklos@szeredi.hu>
|
2002-12-04 02:45:21 +08:00
|
|
|
|
|
|
|
* Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
|
|
|
|
an incompatible interface change.
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-10-28 Miklos Szeredi <miklos@szeredi.hu>
|
2002-10-28 16:49:39 +08:00
|
|
|
|
|
|
|
* Portablility fix (bug reported by C. Chris Erway)
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-10-25 Miklos Szeredi <miklos@szeredi.hu>
|
2002-10-25 19:40:14 +08:00
|
|
|
|
|
|
|
* Use Mark Glines' fd passing method for default operation instead
|
|
|
|
of old reexec
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
|
2002-10-24 19:50:33 +08:00
|
|
|
|
|
|
|
* fix "Stale NFS file handle" bug caused by changes in 2.4.19
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
|
2002-10-24 17:19:43 +08:00
|
|
|
|
|
|
|
* fix incompatiblity with Red Hat kernels, with help from Nathan
|
|
|
|
Thompson-Amato.
|
|
|
|
|
2002-04-18 22:41:48 +08:00
|
|
|
2002-04-18 Mark Glines <mark@glines.org>
|
|
|
|
|
|
|
|
* added an alternative to fuse_mount(), called
|
|
|
|
fuse_mount_ioslave(), which does not need to reexec the
|
|
|
|
FUSE program.
|
|
|
|
* added a small helper util needed by fuse_mount_ioslave().
|
|
|
|
|
2002-03-17 15:01:14 +08:00
|
|
|
2002-03-16 Mark Glines <mark@glines.org>
|
|
|
|
|
|
|
|
* use struct fuse_statfs everywhere possible to avoid problems
|
|
|
|
with the headerfiles changing struct statfs member sizes
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-03-01 Miklos Szeredi <miklos@szeredi.hu>
|
2002-03-01 15:47:35 +08:00
|
|
|
|
|
|
|
* Another RPM spec file for RedHat >= 7 by Ian Pilcher
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-01-14 Miklos Szeredi <miklos@szeredi.hu>
|
2002-01-14 16:48:46 +08:00
|
|
|
|
|
|
|
* RPM support by Achim Settelmeier
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
|
2002-01-09 21:46:10 +08:00
|
|
|
|
|
|
|
* Version 0.95 released
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
|
2002-01-09 20:23:27 +08:00
|
|
|
|
|
|
|
* Revaidate all path components not just the last, this means a
|
|
|
|
very small performance penalty for being more up-to-date.
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2002-01-08 Miklos Szeredi <miklos@szeredi.hu>
|
2002-01-09 20:23:27 +08:00
|
|
|
|
|
|
|
* Update and fix python interface
|
|
|
|
|
2002-01-08 00:32:02 +08:00
|
|
|
2002-01-07 Mark Glines <mark@glines.org>
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2002-01-08 00:32:02 +08:00
|
|
|
* Added statfs() support to kernel, lib, examples, and perl!
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-12-26 Miklos Szeredi <miklos@szeredi.hu>
|
2002-01-08 17:55:14 +08:00
|
|
|
|
|
|
|
* Better cross compilation support
|
|
|
|
|
|
|
|
* Ported to Compaq IPAQ
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-12-20 Miklos Szeredi <miklos@szeredi.hu>
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2001-12-20 23:38:05 +08:00
|
|
|
* Added function fuse_get_context() to library API (inspired by
|
2005-02-02 19:14:04 +08:00
|
|
|
patch from Matt Ryan)
|
|
|
|
|
2001-12-20 23:38:05 +08:00
|
|
|
* Added flags to fusermount and to kernel interface to control
|
|
|
|
permission checking
|
2001-11-09 22:49:18 +08:00
|
|
|
|
2001-12-20 23:38:05 +08:00
|
|
|
* Integrated fuse_set_operations() into fuse_new()
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-12-08 Miklos Szeredi <miklos@szeredi.hu>
|
2001-12-20 23:38:05 +08:00
|
|
|
|
|
|
|
* Applied header protection + extern "C" patch by Roland
|
|
|
|
Bauerschmidt
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-12-02 Miklos Szeredi <miklos@szeredi.hu>
|
2001-12-20 23:38:05 +08:00
|
|
|
|
2005-02-02 19:14:04 +08:00
|
|
|
* Added perl bindings by Mark Glines
|
2001-12-20 23:38:05 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-11-21 Miklos Szeredi <miklos@szeredi.hu>
|
2001-12-20 23:38:05 +08:00
|
|
|
|
|
|
|
* Cleaned up way of mounting simple filesystems.
|
|
|
|
|
|
|
|
* fuse_main() helper function added
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-11-18 Miklos Szeredi <miklos@szeredi.hu>
|
2005-02-02 19:14:04 +08:00
|
|
|
|
2001-12-20 23:38:05 +08:00
|
|
|
* Optimized read/write operations, so that minimal copying of data
|
|
|
|
is done
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-11-14 Miklos Szeredi <miklos@szeredi.hu>
|
2001-12-20 23:38:05 +08:00
|
|
|
|
|
|
|
* Python bindings by Jeff Epler added
|
2001-11-14 16:16:20 +08:00
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-11-13 Miklos Szeredi <miklos@szeredi.hu>
|
2001-11-14 16:16:20 +08:00
|
|
|
|
|
|
|
* Fixed vfsmount reference leak in fuse_follow_link
|
|
|
|
|
|
|
|
* FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
|
|
|
|
userspace is ignored
|
|
|
|
|
2004-07-08 03:19:53 +08:00
|
|
|
2001-11-09 Miklos Szeredi <miklos@szeredi.hu>
|
2001-11-14 16:16:20 +08:00
|
|
|
|
2001-12-20 23:38:05 +08:00
|
|
|
* Started ChangeLog
|