blob: 43ec0535335f104c31b4276dc42d2bae87c4dfb7 [file] [log] [blame]
Miklos Szeredi377b2ea2004-02-06 09:48:51 +000012004-02-06 Miklos Szeredi <mszeredi@inf.bme.hu>
2
3 * Fixed writing >= 2G files
4
Miklos Szeredi88124792004-02-04 11:06:17 +000052004-02-04 Miklos Szeredi <mszeredi@inf.bme.hu>
6
7 * Released 1.1
8
Miklos Szeredi72f6a932004-01-29 11:29:18 +000092004-01-29 Miklos Szeredi <mszeredi@inf.bme.hu>
10
11 * Properly check if the inode exists in fuse_invalidate
12
Miklos Szerediedf26632004-01-27 14:54:47 +0000132004-01-27 Miklos Szeredi <mszeredi@inf.bme.hu>
14
15 * Added -q option for fusermount
16
17 * fuse_unmount() now uses -q option of fusermount, so no error is
18 printed if the cause of the program exit is that the filesystem
19 has already been unmounted
20
Miklos Szeredif4f8b892004-01-27 17:04:59 +000021 * Fix i_nlink correctness after rmdir/unlink
22
Miklos Szeredi307242f2004-01-26 11:28:44 +0000232004-01-26 Miklos Szeredi <mszeredi@inf.bme.hu>
24
Miklos Szeredib1158392004-01-26 14:43:12 +000025 * Released 1.1-pre2
26
272004-01-26 Miklos Szeredi <mszeredi@inf.bme.hu>
28
Miklos Szeredi307242f2004-01-26 11:28:44 +000029 * Fix typo (thanks Marcos Dione)
Miklos Szeredib1158392004-01-26 14:43:12 +000030
31 * Compile fixes for 2.4 kernels
Miklos Szeredi307242f2004-01-26 11:28:44 +000032
332004-01-23 Miklos Szeredi <mszeredi@inf.bme.hu>
34
35 * Fix CONFIG_MODVERSIONS compile on 2.6
36
372004-01-22 Miklos Szeredi <mszeredi@inf.bme.hu>
38
39 * Write all pending data before a RELEASE operation
40
41 * Suppress 'Bad file descriptor' warning on exit
42
43 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
Miklos Szeredib1158392004-01-26 14:43:12 +000044 get confused with '-d' of fuse_main() (sorry about this change)
Miklos Szeredi307242f2004-01-26 11:28:44 +000045
Miklos Szeredib1158392004-01-26 14:43:12 +000046 * New fusermount option '-l' which enables big reads. Big reads
47 are now disabled by default.
Miklos Szeredi307242f2004-01-26 11:28:44 +000048
49 * fuse_main() can accept fusermount arguments after a '--'
50
Miklos Szeredie815c032004-01-19 18:20:49 +0000512004-01-19 Miklos Szeredi <mszeredi@inf.bme.hu>
52
53 * Support for exporting filesystem over NFS (see README.NFS)
54
Miklos Szeredi7c35cf92004-01-14 16:56:49 +0000552004-01-14 Miklos Szeredi <mszeredi@inf.bme.hu>
56
57 * Support non-blocking writepage on 2.6. This makes FUSE behave
58 much more nicely in low-memory situations
59
60 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
61 (Note: the mknod method does not yet use 32bit device number)
62
Miklos Szeredie8663f32004-01-13 15:33:12 +0000632004-01-13 Miklos Szeredi <mszeredi@inf.bme.hu>
64
65 * Code cleanups
66
Miklos Szeredi4b7abe32004-01-07 16:49:12 +0000672004-01-07 Miklos Szeredi <mszeredi@inf.bme.hu>
68
69 * Released 1.1-pre1
70
Miklos Szeredif85ab242004-01-07 12:16:45 +0000712004-01-06 Miklos Szeredi <mszeredi@inf.bme.hu>
72
73 * Integrated 2.6 kernel support patch by Michael Grigoriev
74
75 * Improvements and cleanups for 2.6 kernels
76
Miklos Szeredi7ffb8cf2004-01-05 15:07:12 +0000772004-01-05 Miklos Szeredi <mszeredi@inf.bme.hu>
78
79 * Added -d option to fusermount
80
Miklos Szeredi2f3d9402003-12-15 12:11:33 +0000812003-12-15 Miklos Szeredi <mszeredi@inf.bme.hu>
82
83 * Added major+minor version to library API, and minor version to
84 kernel API
85
David McNab7a19caf2003-12-13 02:05:46 +0000862003-12-13 David McNab <david@rebirthing.co.nz>
87
88 * Implemented fsync support in examples/example.py
89
90 * Implemented 'fsync' and 'statfs' methods in python
91 interface
92
Miklos Szeredie4cf7332003-12-12 11:53:31 +0000932003-12-12 Miklos Szeredi <mszeredi@inf.bme.hu>
94
95 * Make it compile on 2.4.19.
96
Miklos Szeredi5e43f2c2003-12-12 14:06:41 +000097 * Add fsync operation (write file failed on xemacs & vi)
Miklos Szeredie4cf7332003-12-12 11:53:31 +000098
David McNab8bf62632003-12-11 22:49:22 +0000992003-12-12 David McNab <david@rebirthing.co.nz>
100
101 * Added distutils support to the python module, as per standard
102 python development practice
103
Miklos Szeredi874d95d2003-12-11 14:27:57 +00001042003-12-11 Miklos Szeredi <mszeredi@inf.bme.hu>
105
106 * Add file locking for mount/unmount (based on patch by Valient
107 Gough)
108
1092003-12-11 David McNab <david@rebirthing.co.nz>
110
111 * Python filesystem - was broken with python2.3, now fixed:
112 - changed PyTuple_* calls to PySequence_*, because os.lstat
113 is no longer returning a pure tuple
114 - changed PyInt_Check() calls to also call PyLong_Check,
115 to cover for cases (eg os.lstat) where longs are returned
116 - Added support for file 'release' handling, which IMO is
117 essential since this signals to a FS that writes to a file
118 are complete (and therefore the file can now be disposed of
119 meaningfully at the python filesystem's discretion)
120 - Added '__init__' handler to base Fuse class, which allows
121 your Python class to know the mountpoint and mount args,
122 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
123
124 * General:
125 - added 'mount.fuse' script (in util/ dir), which is meant to be
126 symlinked from /sbin, and which allows FUSE filesystems to
127 be mounted with the 'mount' command, and listed in fstab;
128 also, mount arguments get passed to your filesystem
129
130
Miklos Szeredif27ec7d2003-11-04 13:46:32 +00001312003-11-04 Miklos Szeredi <mszeredi@inf.bme.hu>
132
133 * Fix kernel version detection (again). Bugreport by Peter Levart
134
Miklos Szeredi36ca5562003-11-03 19:32:14 +00001352003-11-03 Miklos Szeredi <mszeredi@inf.bme.hu>
136
137 * Applied read combining patch by Michael Grigoriev (tested by
138 Valient Gough and Vincent Wagelaar)
139
Miklos Szeredif08ace02003-10-22 11:11:57 +00001402003-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
141
142 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
143 #766443)
144
Miklos Szeredi0e535082003-10-13 10:08:06 +00001452003-10-13 Miklos Szeredi <mszeredi@inf.bme.hu>
146
147 * Error code fixes in kernel module
148
Miklos Szeredi27af48b2003-10-04 17:31:38 +00001492003-10-04 Miklos Szeredi <mszeredi@inf.bme.hu>
150
151 * kernel version detection fix
152
153 * fusermount now uses "lazy" umount option
154
155 * fusermount can use modprobe with module-init-tools
156
Miklos Szeredida4e4862003-09-08 11:14:11 +00001572003-09-08 Miklos Szeredi <mszeredi@inf.bme.hu>
158
159 * Integrated caching patch by Michael Grigoriev
160
Miklos Szeredida4e4862003-09-08 11:14:11 +0000161 * Added "Filesystems" file with descriptions of projects using
162 FUSE
163
Miklos Szeredi02ceb112003-09-08 13:52:25 +0000164 * Added patch by Michael Grigoriev to allow compliation of FUSE
165 kernel module for 2.6 kernels
166
Miklos Szeredi84838472003-06-02 06:12:27 +00001672003-06-02 Miklos Szeredi <mszeredi@inf.bme.hu>
168
169 * And another spec-file fix by Achim Settelmeier
170
Miklos Szeredi21c282b2003-05-26 07:12:57 +00001712003-05-26 Miklos Szeredi <mszeredi@inf.bme.hu>
172
173 * Spec-file fix by Achim Settelmeier
174
Miklos Szeredi79b461a2003-03-10 09:35:34 +00001752003-03-10 Miklos Szeredi <mszeredi@inf.bme.hu>
176
177 * Fix umount oops (found by Samuli Kärkkäinen)
178
Miklos Szeredi941ae4c2003-03-05 08:29:58 +00001792003-03-05 Miklos Szeredi <mszeredi@inf.bme.hu>
180
181 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
182
Miklos Szeredia9b2f262003-03-04 09:37:20 +00001832003-03-04 Miklos Szeredi <mszeredi@inf.bme.hu>
184
185 * Updated fuse.spec file (Achim Settelmeier)
186
Miklos Szeredic0226bb2003-02-19 16:05:06 +00001872003-02-19 Miklos Szeredi <mszeredi@inf.bme.hu>
188
189 * Version 1.0 released
190
Miklos Szeredifa84e0d2003-02-13 09:53:33 +00001912003-02-12 Miklos Szeredi <mszeredi@inf.bme.hu>
192
193 * SuSE compilation fix by Juan-Mariano de Goyeneche
194
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001952002-12-10 Miklos Szeredi <mszeredi@inf.bme.hu>
196
197 * The release() VFS call is now exported to the FUSE interface
198
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001992002-12-05 Miklos Szeredi <mszeredi@inf.bme.hu>
200
201 * 64 bit file offset fixes in the fuse kernel module
202
203 * Added function 'fuse_exit()' which can be used to exit the main
204 loop
205
Miklos Szeredi5f054812002-12-03 18:45:21 +00002062002-12-03 Miklos Szeredi <mszeredi@inf.bme.hu>
207
208 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
209 an incompatible interface change.
210
Miklos Szeredi6bf8b682002-10-28 08:49:39 +00002112002-10-28 Miklos Szeredi <mszeredi@inf.bme.hu>
212
213 * Portablility fix (bug reported by C. Chris Erway)
214
Miklos Szeredid6e9f882002-10-25 11:40:14 +00002152002-10-25 Miklos Szeredi <mszeredi@inf.bme.hu>
216
217 * Use Mark Glines' fd passing method for default operation instead
218 of old reexec
219
Miklos Szeredi60c23522002-10-24 09:19:43 +00002202002-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
221
Miklos Szeredi5e5d61f2002-10-24 11:50:33 +0000222 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
223
2242002-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
225
Miklos Szeredi60c23522002-10-24 09:19:43 +0000226 * fix incompatiblity with Red Hat kernels, with help from Nathan
227 Thompson-Amato.
228
Mark Glines65ba2192002-04-18 14:41:48 +00002292002-04-18 Mark Glines <mark@glines.org>
230
231 * added an alternative to fuse_mount(), called
232 fuse_mount_ioslave(), which does not need to reexec the
233 FUSE program.
234 * added a small helper util needed by fuse_mount_ioslave().
235
Mark Glines220635a2002-03-17 07:01:14 +00002362002-03-16 Mark Glines <mark@glines.org>
237
238 * use struct fuse_statfs everywhere possible to avoid problems
239 with the headerfiles changing struct statfs member sizes
240
Miklos Szeredi081f3c22002-03-01 07:47:35 +00002412002-03-01 Miklos Szeredi <mszeredi@inf.bme.hu>
242
243 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
244
Miklos Szeredif782fc42002-01-14 08:48:46 +00002452002-01-14 Miklos Szeredi <mszeredi@inf.bme.hu>
246
247 * RPM support by Achim Settelmeier
248
Miklos Szeredi4b2bef42002-01-09 12:23:27 +00002492002-01-09 Miklos Szeredi <mszeredi@inf.bme.hu>
250
Miklos Szerediddc862a2002-01-09 13:46:10 +0000251 * Version 0.95 released
252
2532002-01-09 Miklos Szeredi <mszeredi@inf.bme.hu>
254
Miklos Szeredi4b2bef42002-01-09 12:23:27 +0000255 * Revaidate all path components not just the last, this means a
256 very small performance penalty for being more up-to-date.
257
2582002-01-08 Miklos Szeredi <mszeredi@inf.bme.hu>
259
260 * Update and fix python interface
261
Mark Glinesd84b39a2002-01-07 16:32:02 +00002622002-01-07 Mark Glines <mark@glines.org>
263
264 * Added statfs() support to kernel, lib, examples, and perl!
265
Miklos Szeredi46a46dc2002-01-08 09:55:14 +00002662001-12-26 Miklos Szeredi <mszeredi@inf.bme.hu>
267
268 * Better cross compilation support
269
270 * Ported to Compaq IPAQ
271
Miklos Szeredife25def2001-12-20 15:38:05 +00002722001-12-20 Miklos Szeredi <mszeredi@inf.bme.hu>
273
274 * Added function fuse_get_context() to library API (inspired by
275 patch from Matt Ryan)
276
277 * Added flags to fusermount and to kernel interface to control
278 permission checking
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000279
Miklos Szeredife25def2001-12-20 15:38:05 +0000280 * Integrated fuse_set_operations() into fuse_new()
281
2822001-12-08 Miklos Szeredi <mszeredi@inf.bme.hu>
283
284 * Applied header protection + extern "C" patch by Roland
285 Bauerschmidt
286
2872001-12-02 Miklos Szeredi <mszeredi@inf.bme.hu>
288
289 * Added perl bindings by Mark Glines
290
2912001-11-21 Miklos Szeredi <mszeredi@inf.bme.hu>
292
293 * Cleaned up way of mounting simple filesystems.
294
295 * fuse_main() helper function added
296
2972001-11-18 Miklos Szeredi <mszeredi@inf.bme.hu>
298
299 * Optimized read/write operations, so that minimal copying of data
300 is done
301
3022001-11-14 Miklos Szeredi <mszeredi@inf.bme.hu>
303
304 * Python bindings by Jeff Epler added
Miklos Szeredi838c14f2001-11-14 08:16:20 +0000305
3062001-11-13 Miklos Szeredi <mszeredi@inf.bme.hu>
307
308 * Fixed vfsmount reference leak in fuse_follow_link
309
310 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
311 userspace is ignored
312
Miklos Szeredife25def2001-12-20 15:38:05 +00003132001-11-09 Miklos Szeredi <mszeredi@inf.bme.hu>
Miklos Szeredi838c14f2001-11-14 08:16:20 +0000314
Miklos Szeredife25def2001-12-20 15:38:05 +0000315 * Started ChangeLog