aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-07-06 10:07:52 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-07-06 10:07:52 +0000
commit340d21f346500a7e819cbb1fd70429b1acfac81a (patch)
tree6db4abf0b065500e9cd961ec11859dd2783a94df /README
parent437d81187fe3aac243a4b47f4a967a195fe9f22a (diff)
downloadandroid_external_fuse-340d21f346500a7e819cbb1fd70429b1acfac81a.tar.gz
android_external_fuse-340d21f346500a7e819cbb1fd70429b1acfac81a.tar.bz2
android_external_fuse-340d21f346500a7e819cbb1fd70429b1acfac81a.zip
fix
Diffstat (limited to 'README')
-rw-r--r--README17
1 files changed, 17 insertions, 0 deletions
diff --git a/README b/README
index fc1675e..5006b3e 100644
--- a/README
+++ b/README
@@ -193,6 +193,23 @@ fsname=NAME
Sets the filesystem name. The default is the program name.
+use_ino
+
+ Honor the 'st_ino' field in getattr() and fill_dir(). This value is
+ used to fill in the 'st_ino' field in the stat()/lstat()/fstat()
+ functions and the 'd_ino' field in the readdir() function. The
+ filesystem does not have to guarantee uniqueness, however some
+ applications rely on this value being unique for the whole
+ filesystem.
+
+readdir_ino
+
+ If 'use_ino' option is not given, still try to fill in the 'd_ino'
+ field in readdir(). If the name was previously looked up, and is
+ still in the cache, the inode number found there will be used.
+ Otherwise it will be set to '-1'. If 'use_ino' option is given,
+ this option is ignored.
+
nonempty
Allows mounts over a non-empty file or directory. By default these