blob: 969342bde44706c3d65003492f1fc6e7dd0361a6 [file] [log] [blame]
Miklos Szerediedf26632004-01-27 14:54:47 +000012004-01-27 Miklos Szeredi <mszeredi@inf.bme.hu>
2
3 * Added -q option for fusermount
4
5 * fuse_unmount() now uses -q option of fusermount, so no error is
6 printed if the cause of the program exit is that the filesystem
7 has already been unmounted
8
Miklos Szeredi307242f2004-01-26 11:28:44 +000092004-01-26 Miklos Szeredi <mszeredi@inf.bme.hu>
10
Miklos Szeredib1158392004-01-26 14:43:12 +000011 * Released 1.1-pre2
12
132004-01-26 Miklos Szeredi <mszeredi@inf.bme.hu>
14
Miklos Szeredi307242f2004-01-26 11:28:44 +000015 * Fix typo (thanks Marcos Dione)
Miklos Szeredib1158392004-01-26 14:43:12 +000016
17 * Compile fixes for 2.4 kernels
Miklos Szeredi307242f2004-01-26 11:28:44 +000018
192004-01-23 Miklos Szeredi <mszeredi@inf.bme.hu>
20
21 * Fix CONFIG_MODVERSIONS compile on 2.6
22
232004-01-22 Miklos Szeredi <mszeredi@inf.bme.hu>
24
25 * Write all pending data before a RELEASE operation
26
27 * Suppress 'Bad file descriptor' warning on exit
28
29 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
Miklos Szeredib1158392004-01-26 14:43:12 +000030 get confused with '-d' of fuse_main() (sorry about this change)
Miklos Szeredi307242f2004-01-26 11:28:44 +000031
Miklos Szeredib1158392004-01-26 14:43:12 +000032 * New fusermount option '-l' which enables big reads. Big reads
33 are now disabled by default.
Miklos Szeredi307242f2004-01-26 11:28:44 +000034
35 * fuse_main() can accept fusermount arguments after a '--'
36
Miklos Szeredie815c032004-01-19 18:20:49 +0000372004-01-19 Miklos Szeredi <mszeredi@inf.bme.hu>
38
39 * Support for exporting filesystem over NFS (see README.NFS)
40
Miklos Szeredi7c35cf92004-01-14 16:56:49 +0000412004-01-14 Miklos Szeredi <mszeredi@inf.bme.hu>
42
43 * Support non-blocking writepage on 2.6. This makes FUSE behave
44 much more nicely in low-memory situations
45
46 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
47 (Note: the mknod method does not yet use 32bit device number)
48
Miklos Szeredie8663f32004-01-13 15:33:12 +0000492004-01-13 Miklos Szeredi <mszeredi@inf.bme.hu>
50
51 * Code cleanups
52
Miklos Szeredi4b7abe32004-01-07 16:49:12 +0000532004-01-07 Miklos Szeredi <mszeredi@inf.bme.hu>
54
55 * Released 1.1-pre1
56
Miklos Szeredif85ab242004-01-07 12:16:45 +0000572004-01-06 Miklos Szeredi <mszeredi@inf.bme.hu>
58
59 * Integrated 2.6 kernel support patch by Michael Grigoriev
60
61 * Improvements and cleanups for 2.6 kernels
62
Miklos Szeredi7ffb8cf2004-01-05 15:07:12 +0000632004-01-05 Miklos Szeredi <mszeredi@inf.bme.hu>
64
65 * Added -d option to fusermount
66
Miklos Szeredi2f3d9402003-12-15 12:11:33 +0000672003-12-15 Miklos Szeredi <mszeredi@inf.bme.hu>
68
69 * Added major+minor version to library API, and minor version to
70 kernel API
71
David McNab7a19caf2003-12-13 02:05:46 +0000722003-12-13 David McNab <david@rebirthing.co.nz>
73
74 * Implemented fsync support in examples/example.py
75
76 * Implemented 'fsync' and 'statfs' methods in python
77 interface
78
Miklos Szeredie4cf7332003-12-12 11:53:31 +0000792003-12-12 Miklos Szeredi <mszeredi@inf.bme.hu>
80
81 * Make it compile on 2.4.19.
82
Miklos Szeredi5e43f2c2003-12-12 14:06:41 +000083 * Add fsync operation (write file failed on xemacs & vi)
Miklos Szeredie4cf7332003-12-12 11:53:31 +000084
David McNab8bf62632003-12-11 22:49:22 +0000852003-12-12 David McNab <david@rebirthing.co.nz>
86
87 * Added distutils support to the python module, as per standard
88 python development practice
89
Miklos Szeredi874d95d2003-12-11 14:27:57 +0000902003-12-11 Miklos Szeredi <mszeredi@inf.bme.hu>
91
92 * Add file locking for mount/unmount (based on patch by Valient
93 Gough)
94
952003-12-11 David McNab <david@rebirthing.co.nz>
96
97 * Python filesystem - was broken with python2.3, now fixed:
98 - changed PyTuple_* calls to PySequence_*, because os.lstat
99 is no longer returning a pure tuple
100 - changed PyInt_Check() calls to also call PyLong_Check,
101 to cover for cases (eg os.lstat) where longs are returned
102 - Added support for file 'release' handling, which IMO is
103 essential since this signals to a FS that writes to a file
104 are complete (and therefore the file can now be disposed of
105 meaningfully at the python filesystem's discretion)
106 - Added '__init__' handler to base Fuse class, which allows
107 your Python class to know the mountpoint and mount args,
108 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
109
110 * General:
111 - added 'mount.fuse' script (in util/ dir), which is meant to be
112 symlinked from /sbin, and which allows FUSE filesystems to
113 be mounted with the 'mount' command, and listed in fstab;
114 also, mount arguments get passed to your filesystem
115
116
Miklos Szeredif27ec7d2003-11-04 13:46:32 +00001172003-11-04 Miklos Szeredi <mszeredi@inf.bme.hu>
118
119 * Fix kernel version detection (again). Bugreport by Peter Levart
120
Miklos Szeredi36ca5562003-11-03 19:32:14 +00001212003-11-03 Miklos Szeredi <mszeredi@inf.bme.hu>
122
123 * Applied read combining patch by Michael Grigoriev (tested by
124 Valient Gough and Vincent Wagelaar)
125
Miklos Szeredif08ace02003-10-22 11:11:57 +00001262003-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
127
128 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
129 #766443)
130
Miklos Szeredi0e535082003-10-13 10:08:06 +00001312003-10-13 Miklos Szeredi <mszeredi@inf.bme.hu>
132
133 * Error code fixes in kernel module
134
Miklos Szeredi27af48b2003-10-04 17:31:38 +00001352003-10-04 Miklos Szeredi <mszeredi@inf.bme.hu>
136
137 * kernel version detection fix
138
139 * fusermount now uses "lazy" umount option
140
141 * fusermount can use modprobe with module-init-tools
142
Miklos Szeredida4e4862003-09-08 11:14:11 +00001432003-09-08 Miklos Szeredi <mszeredi@inf.bme.hu>
144
145 * Integrated caching patch by Michael Grigoriev
146
Miklos Szeredida4e4862003-09-08 11:14:11 +0000147 * Added "Filesystems" file with descriptions of projects using
148 FUSE
149
Miklos Szeredi02ceb112003-09-08 13:52:25 +0000150 * Added patch by Michael Grigoriev to allow compliation of FUSE
151 kernel module for 2.6 kernels
152
Miklos Szeredi84838472003-06-02 06:12:27 +00001532003-06-02 Miklos Szeredi <mszeredi@inf.bme.hu>
154
155 * And another spec-file fix by Achim Settelmeier
156
Miklos Szeredi21c282b2003-05-26 07:12:57 +00001572003-05-26 Miklos Szeredi <mszeredi@inf.bme.hu>
158
159 * Spec-file fix by Achim Settelmeier
160
Miklos Szeredi79b461a2003-03-10 09:35:34 +00001612003-03-10 Miklos Szeredi <mszeredi@inf.bme.hu>
162
163 * Fix umount oops (found by Samuli Kärkkäinen)
164
Miklos Szeredi941ae4c2003-03-05 08:29:58 +00001652003-03-05 Miklos Szeredi <mszeredi@inf.bme.hu>
166
167 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
168
Miklos Szeredia9b2f262003-03-04 09:37:20 +00001692003-03-04 Miklos Szeredi <mszeredi@inf.bme.hu>
170
171 * Updated fuse.spec file (Achim Settelmeier)
172
Miklos Szeredic0226bb2003-02-19 16:05:06 +00001732003-02-19 Miklos Szeredi <mszeredi@inf.bme.hu>
174
175 * Version 1.0 released
176
Miklos Szeredifa84e0d2003-02-13 09:53:33 +00001772003-02-12 Miklos Szeredi <mszeredi@inf.bme.hu>
178
179 * SuSE compilation fix by Juan-Mariano de Goyeneche
180
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001812002-12-10 Miklos Szeredi <mszeredi@inf.bme.hu>
182
183 * The release() VFS call is now exported to the FUSE interface
184
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001852002-12-05 Miklos Szeredi <mszeredi@inf.bme.hu>
186
187 * 64 bit file offset fixes in the fuse kernel module
188
189 * Added function 'fuse_exit()' which can be used to exit the main
190 loop
191
Miklos Szeredi5f054812002-12-03 18:45:21 +00001922002-12-03 Miklos Szeredi <mszeredi@inf.bme.hu>
193
194 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
195 an incompatible interface change.
196
Miklos Szeredi6bf8b682002-10-28 08:49:39 +00001972002-10-28 Miklos Szeredi <mszeredi@inf.bme.hu>
198
199 * Portablility fix (bug reported by C. Chris Erway)
200
Miklos Szeredid6e9f882002-10-25 11:40:14 +00002012002-10-25 Miklos Szeredi <mszeredi@inf.bme.hu>
202
203 * Use Mark Glines' fd passing method for default operation instead
204 of old reexec
205
Miklos Szeredi60c23522002-10-24 09:19:43 +00002062002-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
207
Miklos Szeredi5e5d61f2002-10-24 11:50:33 +0000208 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
209
2102002-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
211
Miklos Szeredi60c23522002-10-24 09:19:43 +0000212 * fix incompatiblity with Red Hat kernels, with help from Nathan
213 Thompson-Amato.
214
Mark Glines65ba2192002-04-18 14:41:48 +00002152002-04-18 Mark Glines <mark@glines.org>
216
217 * added an alternative to fuse_mount(), called
218 fuse_mount_ioslave(), which does not need to reexec the
219 FUSE program.
220 * added a small helper util needed by fuse_mount_ioslave().
221
Mark Glines220635a2002-03-17 07:01:14 +00002222002-03-16 Mark Glines <mark@glines.org>
223
224 * use struct fuse_statfs everywhere possible to avoid problems
225 with the headerfiles changing struct statfs member sizes
226
Miklos Szeredi081f3c22002-03-01 07:47:35 +00002272002-03-01 Miklos Szeredi <mszeredi@inf.bme.hu>
228
229 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
230
Miklos Szeredif782fc42002-01-14 08:48:46 +00002312002-01-14 Miklos Szeredi <mszeredi@inf.bme.hu>
232
233 * RPM support by Achim Settelmeier
234
Miklos Szeredi4b2bef42002-01-09 12:23:27 +00002352002-01-09 Miklos Szeredi <mszeredi@inf.bme.hu>
236
Miklos Szerediddc862a2002-01-09 13:46:10 +0000237 * Version 0.95 released
238
2392002-01-09 Miklos Szeredi <mszeredi@inf.bme.hu>
240
Miklos Szeredi4b2bef42002-01-09 12:23:27 +0000241 * Revaidate all path components not just the last, this means a
242 very small performance penalty for being more up-to-date.
243
2442002-01-08 Miklos Szeredi <mszeredi@inf.bme.hu>
245
246 * Update and fix python interface
247
Mark Glinesd84b39a2002-01-07 16:32:02 +00002482002-01-07 Mark Glines <mark@glines.org>
249
250 * Added statfs() support to kernel, lib, examples, and perl!
251
Miklos Szeredi46a46dc2002-01-08 09:55:14 +00002522001-12-26 Miklos Szeredi <mszeredi@inf.bme.hu>
253
254 * Better cross compilation support
255
256 * Ported to Compaq IPAQ
257
Miklos Szeredife25def2001-12-20 15:38:05 +00002582001-12-20 Miklos Szeredi <mszeredi@inf.bme.hu>
259
260 * Added function fuse_get_context() to library API (inspired by
261 patch from Matt Ryan)
262
263 * Added flags to fusermount and to kernel interface to control
264 permission checking
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000265
Miklos Szeredife25def2001-12-20 15:38:05 +0000266 * Integrated fuse_set_operations() into fuse_new()
267
2682001-12-08 Miklos Szeredi <mszeredi@inf.bme.hu>
269
270 * Applied header protection + extern "C" patch by Roland
271 Bauerschmidt
272
2732001-12-02 Miklos Szeredi <mszeredi@inf.bme.hu>
274
275 * Added perl bindings by Mark Glines
276
2772001-11-21 Miklos Szeredi <mszeredi@inf.bme.hu>
278
279 * Cleaned up way of mounting simple filesystems.
280
281 * fuse_main() helper function added
282
2832001-11-18 Miklos Szeredi <mszeredi@inf.bme.hu>
284
285 * Optimized read/write operations, so that minimal copying of data
286 is done
287
2882001-11-14 Miklos Szeredi <mszeredi@inf.bme.hu>
289
290 * Python bindings by Jeff Epler added
Miklos Szeredi838c14f2001-11-14 08:16:20 +0000291
2922001-11-13 Miklos Szeredi <mszeredi@inf.bme.hu>
293
294 * Fixed vfsmount reference leak in fuse_follow_link
295
296 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
297 userspace is ignored
298
Miklos Szeredife25def2001-12-20 15:38:05 +00002992001-11-09 Miklos Szeredi <mszeredi@inf.bme.hu>
Miklos Szeredi838c14f2001-11-14 08:16:20 +0000300
Miklos Szeredife25def2001-12-20 15:38:05 +0000301 * Started ChangeLog