aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2006-09-30 16:02:25 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2006-09-30 16:02:25 +0000
commit708b4818f2d0b9a1e277de85a00a0355745a5cd0 (patch)
tree0e35c2d3906473f9b471eb4029a32e91e32d2480 /doc
parentff5fa7f8de978d56e8c334e746e08195ed25730d (diff)
bmap support
Diffstat (limited to 'doc')
-rw-r--r--doc/kernel.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/kernel.txt b/doc/kernel.txt
index a584f05..e94e98b 100644
--- a/doc/kernel.txt
+++ b/doc/kernel.txt
@@ -51,6 +51,22 @@ homepage:
http://fuse.sourceforge.net/
+Filesystem type
+~~~~~~~~~~~~~~~
+
+The filesystem type given to mount(2) can be one of the following:
+
+'fuse'
+
+ This is the usual way to mount a FUSE filesystem. The first
+ argument of the mount system call may contain an arbitrary string,
+ which is not interpreted by the kernel.
+
+'fuseblk'
+
+ The filesystem is block device based. The first argument of the
+ mount system call is interpreted as the name of the device.
+
Mount options
~~~~~~~~~~~~~
@@ -94,6 +110,11 @@ Mount options
The default is infinite. Note that the size of read requests is
limited anyway to 32 pages (which is 128kbyte on i386).
+'blksize=N'
+
+ Set the block size for the filesystem. The default is 512. This
+ option is only valid for 'fuseblk' type mounts.
+
Control filesystem
~~~~~~~~~~~~~~~~~~