blob: ae9fdbb3a53d9a143757342aa25157d2269803e5 [file] [log] [blame]
Miklos Szeredie4cf7332003-12-12 11:53:31 +000012003-12-12 Miklos Szeredi <mszeredi@inf.bme.hu>
2
3 * Make it compile on 2.4.19.
4
5 * Add dummy fsync operation (write file failed on xemacs & vi)
6
David McNab8bf62632003-12-11 22:49:22 +000072003-12-12 David McNab <david@rebirthing.co.nz>
8
9 * Added distutils support to the python module, as per standard
10 python development practice
11
Miklos Szeredi874d95d2003-12-11 14:27:57 +0000122003-12-11 Miklos Szeredi <mszeredi@inf.bme.hu>
13
14 * Add file locking for mount/unmount (based on patch by Valient
15 Gough)
16
172003-12-11 David McNab <david@rebirthing.co.nz>
18
19 * Python filesystem - was broken with python2.3, now fixed:
20 - changed PyTuple_* calls to PySequence_*, because os.lstat
21 is no longer returning a pure tuple
22 - changed PyInt_Check() calls to also call PyLong_Check,
23 to cover for cases (eg os.lstat) where longs are returned
24 - Added support for file 'release' handling, which IMO is
25 essential since this signals to a FS that writes to a file
26 are complete (and therefore the file can now be disposed of
27 meaningfully at the python filesystem's discretion)
28 - Added '__init__' handler to base Fuse class, which allows
29 your Python class to know the mountpoint and mount args,
30 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
31
32 * General:
33 - added 'mount.fuse' script (in util/ dir), which is meant to be
34 symlinked from /sbin, and which allows FUSE filesystems to
35 be mounted with the 'mount' command, and listed in fstab;
36 also, mount arguments get passed to your filesystem
37
38
Miklos Szeredif27ec7d2003-11-04 13:46:32 +0000392003-11-04 Miklos Szeredi <mszeredi@inf.bme.hu>
40
41 * Fix kernel version detection (again). Bugreport by Peter Levart
42
Miklos Szeredi36ca5562003-11-03 19:32:14 +0000432003-11-03 Miklos Szeredi <mszeredi@inf.bme.hu>
44
45 * Applied read combining patch by Michael Grigoriev (tested by
46 Valient Gough and Vincent Wagelaar)
47
Miklos Szeredif08ace02003-10-22 11:11:57 +0000482003-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
49
50 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
51 #766443)
52
Miklos Szeredi0e535082003-10-13 10:08:06 +0000532003-10-13 Miklos Szeredi <mszeredi@inf.bme.hu>
54
55 * Error code fixes in kernel module
56
Miklos Szeredi27af48b2003-10-04 17:31:38 +0000572003-10-04 Miklos Szeredi <mszeredi@inf.bme.hu>
58
59 * kernel version detection fix
60
61 * fusermount now uses "lazy" umount option
62
63 * fusermount can use modprobe with module-init-tools
64
Miklos Szeredida4e4862003-09-08 11:14:11 +0000652003-09-08 Miklos Szeredi <mszeredi@inf.bme.hu>
66
67 * Integrated caching patch by Michael Grigoriev
68
Miklos Szeredida4e4862003-09-08 11:14:11 +000069 * Added "Filesystems" file with descriptions of projects using
70 FUSE
71
Miklos Szeredi02ceb112003-09-08 13:52:25 +000072 * Added patch by Michael Grigoriev to allow compliation of FUSE
73 kernel module for 2.6 kernels
74
Miklos Szeredi84838472003-06-02 06:12:27 +0000752003-06-02 Miklos Szeredi <mszeredi@inf.bme.hu>
76
77 * And another spec-file fix by Achim Settelmeier
78
Miklos Szeredi21c282b2003-05-26 07:12:57 +0000792003-05-26 Miklos Szeredi <mszeredi@inf.bme.hu>
80
81 * Spec-file fix by Achim Settelmeier
82
Miklos Szeredi79b461a2003-03-10 09:35:34 +0000832003-03-10 Miklos Szeredi <mszeredi@inf.bme.hu>
84
85 * Fix umount oops (found by Samuli Kärkkäinen)
86
Miklos Szeredi941ae4c2003-03-05 08:29:58 +0000872003-03-05 Miklos Szeredi <mszeredi@inf.bme.hu>
88
89 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
90
Miklos Szeredia9b2f262003-03-04 09:37:20 +0000912003-03-04 Miklos Szeredi <mszeredi@inf.bme.hu>
92
93 * Updated fuse.spec file (Achim Settelmeier)
94
Miklos Szeredic0226bb2003-02-19 16:05:06 +0000952003-02-19 Miklos Szeredi <mszeredi@inf.bme.hu>
96
97 * Version 1.0 released
98
Miklos Szeredifa84e0d2003-02-13 09:53:33 +0000992003-02-12 Miklos Szeredi <mszeredi@inf.bme.hu>
100
101 * SuSE compilation fix by Juan-Mariano de Goyeneche
102
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001032002-12-10 Miklos Szeredi <mszeredi@inf.bme.hu>
104
105 * The release() VFS call is now exported to the FUSE interface
106
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001072002-12-05 Miklos Szeredi <mszeredi@inf.bme.hu>
108
109 * 64 bit file offset fixes in the fuse kernel module
110
111 * Added function 'fuse_exit()' which can be used to exit the main
112 loop
113
Miklos Szeredi5f054812002-12-03 18:45:21 +00001142002-12-03 Miklos Szeredi <mszeredi@inf.bme.hu>
115
116 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
117 an incompatible interface change.
118
Miklos Szeredi6bf8b682002-10-28 08:49:39 +00001192002-10-28 Miklos Szeredi <mszeredi@inf.bme.hu>
120
121 * Portablility fix (bug reported by C. Chris Erway)
122
Miklos Szeredid6e9f882002-10-25 11:40:14 +00001232002-10-25 Miklos Szeredi <mszeredi@inf.bme.hu>
124
125 * Use Mark Glines' fd passing method for default operation instead
126 of old reexec
127
Miklos Szeredi60c23522002-10-24 09:19:43 +00001282002-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
129
Miklos Szeredi5e5d61f2002-10-24 11:50:33 +0000130 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
131
1322002-10-22 Miklos Szeredi <mszeredi@inf.bme.hu>
133
Miklos Szeredi60c23522002-10-24 09:19:43 +0000134 * fix incompatiblity with Red Hat kernels, with help from Nathan
135 Thompson-Amato.
136
Mark Glines65ba2192002-04-18 14:41:48 +00001372002-04-18 Mark Glines <mark@glines.org>
138
139 * added an alternative to fuse_mount(), called
140 fuse_mount_ioslave(), which does not need to reexec the
141 FUSE program.
142 * added a small helper util needed by fuse_mount_ioslave().
143
Mark Glines220635a2002-03-17 07:01:14 +00001442002-03-16 Mark Glines <mark@glines.org>
145
146 * use struct fuse_statfs everywhere possible to avoid problems
147 with the headerfiles changing struct statfs member sizes
148
Miklos Szeredi081f3c22002-03-01 07:47:35 +00001492002-03-01 Miklos Szeredi <mszeredi@inf.bme.hu>
150
151 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
152
Miklos Szeredif782fc42002-01-14 08:48:46 +00001532002-01-14 Miklos Szeredi <mszeredi@inf.bme.hu>
154
155 * RPM support by Achim Settelmeier
156
Miklos Szeredi4b2bef42002-01-09 12:23:27 +00001572002-01-09 Miklos Szeredi <mszeredi@inf.bme.hu>
158
Miklos Szerediddc862a2002-01-09 13:46:10 +0000159 * Version 0.95 released
160
1612002-01-09 Miklos Szeredi <mszeredi@inf.bme.hu>
162
Miklos Szeredi4b2bef42002-01-09 12:23:27 +0000163 * Revaidate all path components not just the last, this means a
164 very small performance penalty for being more up-to-date.
165
1662002-01-08 Miklos Szeredi <mszeredi@inf.bme.hu>
167
168 * Update and fix python interface
169
Mark Glinesd84b39a2002-01-07 16:32:02 +00001702002-01-07 Mark Glines <mark@glines.org>
171
172 * Added statfs() support to kernel, lib, examples, and perl!
173
Miklos Szeredi46a46dc2002-01-08 09:55:14 +00001742001-12-26 Miklos Szeredi <mszeredi@inf.bme.hu>
175
176 * Better cross compilation support
177
178 * Ported to Compaq IPAQ
179
Miklos Szeredife25def2001-12-20 15:38:05 +00001802001-12-20 Miklos Szeredi <mszeredi@inf.bme.hu>
181
182 * Added function fuse_get_context() to library API (inspired by
183 patch from Matt Ryan)
184
185 * Added flags to fusermount and to kernel interface to control
186 permission checking
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000187
Miklos Szeredife25def2001-12-20 15:38:05 +0000188 * Integrated fuse_set_operations() into fuse_new()
189
1902001-12-08 Miklos Szeredi <mszeredi@inf.bme.hu>
191
192 * Applied header protection + extern "C" patch by Roland
193 Bauerschmidt
194
1952001-12-02 Miklos Szeredi <mszeredi@inf.bme.hu>
196
197 * Added perl bindings by Mark Glines
198
1992001-11-21 Miklos Szeredi <mszeredi@inf.bme.hu>
200
201 * Cleaned up way of mounting simple filesystems.
202
203 * fuse_main() helper function added
204
2052001-11-18 Miklos Szeredi <mszeredi@inf.bme.hu>
206
207 * Optimized read/write operations, so that minimal copying of data
208 is done
209
2102001-11-14 Miklos Szeredi <mszeredi@inf.bme.hu>
211
212 * Python bindings by Jeff Epler added
Miklos Szeredi838c14f2001-11-14 08:16:20 +0000213
2142001-11-13 Miklos Szeredi <mszeredi@inf.bme.hu>
215
216 * Fixed vfsmount reference leak in fuse_follow_link
217
218 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
219 userspace is ignored
220
Miklos Szeredife25def2001-12-20 15:38:05 +00002212001-11-09 Miklos Szeredi <mszeredi@inf.bme.hu>
Miklos Szeredi838c14f2001-11-14 08:16:20 +0000222
Miklos Szeredife25def2001-12-20 15:38:05 +0000223 * Started ChangeLog