From 31a4ce20e6cdae7a9250990b7f35e752df9f0763 Mon Sep 17 00:00:00 2001 From: szaka Date: Thu, 21 Aug 2008 20:27:16 +0000 Subject: [PATCH] FUSE API documentation update (Daniel Benamy) --- include/fuse-lite/fuse.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/fuse-lite/fuse.h b/include/fuse-lite/fuse.h index 13f33e99..05c1d7af 100644 --- a/include/fuse-lite/fuse.h +++ b/include/fuse-lite/fuse.h @@ -61,6 +61,11 @@ typedef int (*fuse_fill_dir_t) (void *buf, const char *name, * releasedir, fsyncdir, access, create, ftruncate, fgetattr, lock, * init and destroy are special purpose methods, without which a full * featured filesystem can still be implemented. + * + * Almost all operations take a path which can be of any length. + * + * Changed in fuse 2.8.0 (regardless of API version) + * Previously, paths were limited to a length of PATH_MAX. */ struct fuse_operations { /** Get file attributes.