aboutsummaryrefslogtreecommitdiffstats
path: root/perl/README
diff options
context:
space:
mode:
authorMark Glines <mark@glines.org>2002-02-15 07:30:16 +0000
committerMark Glines <mark@glines.org>2002-02-15 07:30:16 +0000
commit29c93235b9032b0f58c99563e5a30c6bd33d8dd0 (patch)
treec0b86f23e13cabbe363e39e1dbfd074636710042 /perl/README
parent9b6b44cdf08b59551ce06a97859d7beb4bb578c8 (diff)
downloadlibfuse-29c93235b9032b0f58c99563e5a30c6bd33d8dd0.tar.gz
fixed mkdir/rmdir
killed some debug messages in tested code, added some in untested stuff updated the readme
Diffstat (limited to 'perl/README')
-rw-r--r--perl/README33
1 files changed, 33 insertions, 0 deletions
diff --git a/perl/README b/perl/README
index b22b87e..ce80884 100644
--- a/perl/README
+++ b/perl/README
@@ -24,3 +24,36 @@ This is contributed to the FUSE project by Mark Glines <mark@glines.org>,
and is therefore subject to the same license and copyright as FUSE itself.
Please see the AUTHORS and COPYING files from the FUSE distribution for
more information.
+
+BUGS
+
+Currently theres a huge problem with atomicity - putting an md5sum or something
+in a while loop, and cd'ing into the mountpoint from a different directory
+causes some interesting failures. For normal perl, every call should grab a
+global lock. For thread-perl, I'm gonna have to do some research to figure out
+the best solution.
+
+Quite a few things aren't tested.
+
+The tested (and seemingly working) stuff includes:
+getattr
+readlink
+getdir
+mknod
+mkdir
+unlink
+rmdir
+open
+read
+statfs
+
+which leaves:
+symlink
+rename
+link
+chmod
+chown
+truncate
+utime
+write
+