blob: 5f2c89dda67acaa6c7f13de2eb9b503890fa4f79 [file] [log] [blame]
Miklos Szeredi307242f2004-01-26 11:28:44 +000012004-01-26 Miklos Szeredi <mszeredi@inf.bme.hu>
2
Miklos Szeredib1158392004-01-26 14:43:12 +00003 * Released 1.1-pre2
4
52004-01-26 Miklos Szeredi <mszeredi@inf.bme.hu>
6
Miklos Szeredi307242f2004-01-26 11:28:44 +00007 * Fix typo (thanks Marcos Dione)
Miklos Szeredib1158392004-01-26 14:43:12 +00008
9 * Compile fixes for 2.4 kernels
Miklos Szeredi307242f2004-01-26 11:28:44 +000010
112004-01-23 Miklos Szeredi <mszeredi@inf.bme.hu>
12
13 * Fix CONFIG_MODVERSIONS compile on 2.6
14
152004-01-22 Miklos Szeredi <mszeredi@inf.bme.hu>
16
17 * Write all pending data before a RELEASE operation
18
19 * Suppress 'Bad file descriptor' warning on exit
20
21 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
Miklos Szeredib1158392004-01-26 14:43:12 +000022 get confused with '-d' of fuse_main() (sorry about this change)
Miklos Szeredi307242f2004-01-26 11:28:44 +000023
Miklos Szeredib1158392004-01-26 14:43:12 +000024 * New fusermount option '-l' which enables big reads. Big reads
25 are now disabled by default.
Miklos Szeredi307242f2004-01-26 11:28:44 +000026
27 * fuse_main() can accept fusermount arguments after a '--'
28
Miklos Szeredie815c032004-01-19 18:20:49 +0000292004-01-19 Miklos Szeredi <mszeredi@inf.bme.hu>
30
31 * Support for exporting filesystem over NFS (see README.NFS)
32
Miklos Szeredi7c35cf92004-01-14 16:56:49 +0000332004-01-14 Miklos Szeredi <mszeredi@inf.bme.hu>
34
35 * Support non-blocking writepage on 2.6. This makes FUSE behave
36 much more nicely in low-memory situations
37
38 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
39 (Note: the mknod method does not yet use 32bit device number)
40
Miklos Szeredie8663f32004-01-13 15:33:12 +0000412004-01-13 Miklos Szeredi <mszeredi@inf.bme.hu>
42
43 * Code cleanups
44
Miklos Szeredi4b7abe32004-01-07 16:49:12 +0000452004-01-07 Miklos Szeredi <mszeredi@inf.bme.hu>
46
47 * Released 1.1-pre1
48
Miklos Szeredif85ab242004-01-07 12:16:45 +0000492004-01-06 Miklos Szeredi <mszeredi@inf.bme.hu>
50
51 * Integrated 2.6 kernel support patch by Michael Grigoriev
52
53 * Improvements and cleanups for 2.6 kernels
54
Miklos Szeredi7ffb8cf2004-01-05 15:07:12 +0000552004-01-05 Miklos Szeredi <mszeredi@inf.bme.hu>
56
57 * Added -d option to fusermount
58
Miklos Szeredi2f3d9402003-12-15 12:11:33 +0000592003-12-15 Miklos Szeredi <mszeredi@inf.bme.hu>
60
61 * Added major+minor version to library API, and minor version to
62 kernel API
63
David McNab7a19caf2003-12-13 02:05:46 +0000642003-12-13 David McNab <david@rebirthing.co.nz>
65
66 * Implemented fsync support in examples/example.py
67
68 * Implemented 'fsync' and 'statfs' methods in python
69 interface
70
Miklos Szeredie4cf7332003-12-12 11:53:31 +0000712003-12-12 Miklos Szeredi <mszeredi@inf.bme.hu>
72
73 * Make it compile on 2.4.19.
74
Miklos Szeredi5e43f2c2003-12-12 14:06:41 +000075 * Add fsync operation (write file failed on xemacs & vi)
Miklos Szeredie4cf7332003-12-12 11:53:31 +000076
David McNab8bf62632003-12-11 22:49:22 +0000772003-12-12 David McNab <david@rebirthing.co.nz>
78
79 * Added distutils support to the python module, as per standard
80 python development practice
81
Miklos Szeredi874d95d2003-12-11 14:27:57 +0000822003-12-11 Miklos Szeredi <mszeredi@inf.bme.hu>
83
84 * Add file locking for mount/unmount (based on patch by Valient
85 Gough)
86
872003-12-11 David McNab <david@rebirthing.co.nz>
88
89 * Python filesystem - was broken with python2.3, now fixed:
90 - changed PyTuple_* calls to PySequence_*, because os.lstat
91 is no longer returning a pure tuple
92 - changed PyInt_Check() calls to also call PyLong_Check,
93 to cover for cases (eg os.lstat) where longs are returned
94 - Added support for file 'release' handling, which IMO is
95 essential since this signals to a FS that writes to a file
96 are complete (and therefore the file can now be disposed of
97 meaningfully at the python filesystem's discretion)
98 - Added '__init__' handler to base Fuse class, which allows
99 your Python class to know the mountpoint and mount args,
100 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
101
102 * General:
103 - added 'mount.fuse' script (in util/ dir), which is meant to be
104 symlinked from /sbin, and which allows FUSE filesystems to
105 be mounted with the 'mount' command, and listed in fstab;
106 also, mount arguments get passed to your filesystem
107
108
Miklos Szeredif27ec7d2003-11-04 13:46:32 +00001092003-11-04 Miklos Szeredi <mszeredi@inf.bme.hu>
110
111 * Fix kernel version detection (again). Bugreport by Peter Levart
112
Miklos Szeredi36ca5562003-11-03 19:32:14 +00001132003-11-03 Miklos Szeredi <mszeredi@inf.bme.hu>
114
115 * Applied read combining patch by Michael Grigoriev (tested by
116 Valient Gough and Vincent Wagelaar)
117
Miklos Szeredif08ace02003-10-22 11:11:57 +00001182003-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
119
120 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
121 #766443)
122
Miklos Szeredi0e535082003-10-13 10:08:06 +00001232003-10-13 Miklos Szeredi <mszeredi@inf.bme.hu>
124
125 * Error code fixes in kernel module
126
Miklos Szeredi27af48b2003-10-04 17:31:38 +00001272003-10-04 Miklos Szeredi <mszeredi@inf.bme.hu>
128
129 * kernel version detection fix
130
131 * fusermount now uses "lazy" umount option
132
133 * fusermount can use modprobe with module-init-tools
134
Miklos Szeredida4e4862003-09-08 11:14:11 +00001352003-09-08 Miklos Szeredi <mszeredi@inf.bme.hu>
136
137 * Integrated caching patch by Michael Grigoriev
138
Miklos Szeredida4e4862003-09-08 11:14:11 +0000139 * Added "Filesystems" file with descriptions of projects using
140 FUSE
141
Miklos Szeredi02ceb112003-09-08 13:52:25 +0000142 * Added patch by Michael Grigoriev to allow compliation of FUSE
143 kernel module for 2.6 kernels
144
Miklos Szeredi84838472003-06-02 06:12:27 +00001452003-06-02 Miklos Szeredi <mszeredi@inf.bme.hu>
146
147 * And another spec-file fix by Achim Settelmeier
148
Miklos Szeredi21c282b2003-05-26 07:12:57 +00001492003-05-26 Miklos Szeredi <mszeredi@inf.bme.hu>
150
151 * Spec-file fix by Achim Settelmeier
152
Miklos Szeredi79b461a2003-03-10 09:35:34 +00001532003-03-10 Miklos Szeredi <mszeredi@inf.bme.hu>
154
155 * Fix umount oops (found by Samuli Kärkkäinen)
156
Miklos Szeredi941ae4c2003-03-05 08:29:58 +00001572003-03-05 Miklos Szeredi <mszeredi@inf.bme.hu>
158
159 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
160
Miklos Szeredia9b2f262003-03-04 09:37:20 +00001612003-03-04 Miklos Szeredi <mszeredi@inf.bme.hu>
162
163 * Updated fuse.spec file (Achim Settelmeier)
164
Miklos Szeredic0226bb2003-02-19 16:05:06 +00001652003-02-19 Miklos Szeredi <mszeredi@inf.bme.hu>
166
167 * Version 1.0 released
168
Miklos Szeredifa84e0d2003-02-13 09:53:33 +00001692003-02-12 Miklos Szeredi <mszeredi@inf.bme.hu>
170
171 * SuSE compilation fix by Juan-Mariano de Goyeneche
172
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001732002-12-10 Miklos Szeredi <mszeredi@inf.bme.hu>
174
175 * The release() VFS call is now exported to the FUSE interface
176
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001772002-12-05 Miklos Szeredi <mszeredi@inf.bme.hu>
178
179 * 64 bit file offset fixes in the fuse kernel module
180
181 * Added function 'fuse_exit()' which can be used to exit the main
182 loop
183
Miklos Szeredi5f054812002-12-03 18:45:21 +00001842002-12-03 Miklos Szeredi <mszeredi@inf.bme.hu>
185
186 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
187 an incompatible interface change.
188
Miklos Szeredi6bf8b682002-10-28 08:49:39 +00001892002-10-28 Miklos Szeredi <mszeredi@inf.bme.hu>
190
191 * Portablility fix (bug reported by C. Chris Erway)
192
Miklos Szeredid6e9f882002-10-25 11:40:14 +00001932002-10-25 Miklos Szeredi <mszeredi@inf.bme.hu>
194
195 * Use Mark Glines' fd passing method for default operation instead
196 of old reexec
197
Miklos Szeredi60c23522002-10-24 09:19:43 +00001982002-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
199
Miklos Szeredi5e5d61f2002-10-24 11:50:33 +0000200 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
201
2022002-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
203
Miklos Szeredi60c23522002-10-24 09:19:43 +0000204 * fix incompatiblity with Red Hat kernels, with help from Nathan
205 Thompson-Amato.
206
Mark Glines65ba2192002-04-18 14:41:48 +00002072002-04-18 Mark Glines <mark@glines.org>
208
209 * added an alternative to fuse_mount(), called
210 fuse_mount_ioslave(), which does not need to reexec the
211 FUSE program.
212 * added a small helper util needed by fuse_mount_ioslave().
213
Mark Glines220635a2002-03-17 07:01:14 +00002142002-03-16 Mark Glines <mark@glines.org>
215
216 * use struct fuse_statfs everywhere possible to avoid problems
217 with the headerfiles changing struct statfs member sizes
218
Miklos Szeredi081f3c22002-03-01 07:47:35 +00002192002-03-01 Miklos Szeredi <mszeredi@inf.bme.hu>
220
221 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
222
Miklos Szeredif782fc42002-01-14 08:48:46 +00002232002-01-14 Miklos Szeredi <mszeredi@inf.bme.hu>
224
225 * RPM support by Achim Settelmeier
226
Miklos Szeredi4b2bef42002-01-09 12:23:27 +00002272002-01-09 Miklos Szeredi <mszeredi@inf.bme.hu>
228
Miklos Szerediddc862a2002-01-09 13:46:10 +0000229 * Version 0.95 released
230
2312002-01-09 Miklos Szeredi <mszeredi@inf.bme.hu>
232
Miklos Szeredi4b2bef42002-01-09 12:23:27 +0000233 * Revaidate all path components not just the last, this means a
234 very small performance penalty for being more up-to-date.
235
2362002-01-08 Miklos Szeredi <mszeredi@inf.bme.hu>
237
238 * Update and fix python interface
239
Mark Glinesd84b39a2002-01-07 16:32:02 +00002402002-01-07 Mark Glines <mark@glines.org>
241
242 * Added statfs() support to kernel, lib, examples, and perl!
243
Miklos Szeredi46a46dc2002-01-08 09:55:14 +00002442001-12-26 Miklos Szeredi <mszeredi@inf.bme.hu>
245
246 * Better cross compilation support
247
248 * Ported to Compaq IPAQ
249
Miklos Szeredife25def2001-12-20 15:38:05 +00002502001-12-20 Miklos Szeredi <mszeredi@inf.bme.hu>
251
252 * Added function fuse_get_context() to library API (inspired by
253 patch from Matt Ryan)
254
255 * Added flags to fusermount and to kernel interface to control
256 permission checking
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000257
Miklos Szeredife25def2001-12-20 15:38:05 +0000258 * Integrated fuse_set_operations() into fuse_new()
259
2602001-12-08 Miklos Szeredi <mszeredi@inf.bme.hu>
261
262 * Applied header protection + extern "C" patch by Roland
263 Bauerschmidt
264
2652001-12-02 Miklos Szeredi <mszeredi@inf.bme.hu>
266
267 * Added perl bindings by Mark Glines
268
2692001-11-21 Miklos Szeredi <mszeredi@inf.bme.hu>
270
271 * Cleaned up way of mounting simple filesystems.
272
273 * fuse_main() helper function added
274
2752001-11-18 Miklos Szeredi <mszeredi@inf.bme.hu>
276
277 * Optimized read/write operations, so that minimal copying of data
278 is done
279
2802001-11-14 Miklos Szeredi <mszeredi@inf.bme.hu>
281
282 * Python bindings by Jeff Epler added
Miklos Szeredi838c14f2001-11-14 08:16:20 +0000283
2842001-11-13 Miklos Szeredi <mszeredi@inf.bme.hu>
285
286 * Fixed vfsmount reference leak in fuse_follow_link
287
288 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
289 userspace is ignored
290
Miklos Szeredife25def2001-12-20 15:38:05 +00002912001-11-09 Miklos Szeredi <mszeredi@inf.bme.hu>
Miklos Szeredi838c14f2001-11-14 08:16:20 +0000292
Miklos Szeredife25def2001-12-20 15:38:05 +0000293 * Started ChangeLog