From: Miklos Szeredi Date: Wed, 8 Jul 2009 16:17:58 +0000 (+0200) Subject: fuse: document protocol version negotiation X-Git-Tag: upstream/snapshot3+hdmi~17610^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37d217f029a56a6d385f99773fb27dfcb51f9a46;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git fuse: document protocol version negotiation Clarify how the protocol version should be negotiated between kernel and userspace. Notably libfuse didn't correctly handle the case when the supported major versions didn't match. Signed-off-by: Miklos Szeredi --- diff --git a/include/linux/fuse.h b/include/linux/fuse.h index b3700f0..3e2925a 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -41,6 +41,26 @@ #include +/* + * Version negotiation: + * + * Both the kernel and userspace send the version they support in the + * INIT request and reply respectively. + * + * If the major versions match then both shall use the smallest + * of the two minor versions for communication. + * + * If the kernel supports a larger major version, then userspace shall + * reply with the major version it supports, ignore the rest of the + * INIT message and expect a new INIT message from the kernel with a + * matching major version. + * + * If the library supports a larger major version, then it shall fall + * back to the major protocol version sent by the kernel for + * communication and reply with that major version (and an arbitrary + * supported minor version). + */ + /** Version number of this interface */ #define FUSE_KERNEL_VERSION 7