lib: don't create new thread for each FORGET request...
[fuse.git] / README.NFS
bloba6f48c561e0b92d69f731f2a466e56d169a20205
1 FUSE module in official kernels (>= 2.6.14) don't support NFS
2 exporting.  In this case if you need NFS exporting capability, use the
3 '--enable-kernel-module' configure option to compile the module from
4 this package.  And make sure, that the FUSE is not compiled into the
5 kernel (CONFIG_FUSE_FS must be 'm' or 'n').
7 You need to add an fsid=NNN option to /etc/exports to make exporting a
8 FUSE directory work.
10 You may get ESTALE (Stale NFS file handle) errors with this.  This is
11 because the current FUSE kernel API and the userspace library cannot
12 handle a situation where the kernel forgets about an inode which is
13 still referenced by the remote NFS client.  This problem will be
14 addressed in a later version.
16 In the future it planned that NFS exporting will be done solely in
17 userspace.