svn commit: r349249 - projects/fuse2/sys/fs/fuse

Alan Somers asomers at FreeBSD.org
Thu Jun 20 23:12:20 UTC 2019


Author: asomers
Date: Thu Jun 20 23:12:19 2019
New Revision: 349249
URL: https://svnweb.freebsd.org/changeset/base/349249

Log:
  fusefs: trivially raise protocol level to 7.14
  
  The only new feature is splice(2) support on /dev/fuse, which FreeBSD can't
  support.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/fuse2/sys/fs/fuse/fuse_kernel.h

Modified: projects/fuse2/sys/fs/fuse/fuse_kernel.h
==============================================================================
--- projects/fuse2/sys/fs/fuse/fuse_kernel.h	Thu Jun 20 23:07:20 2019	(r349248)
+++ projects/fuse2/sys/fs/fuse/fuse_kernel.h	Thu Jun 20 23:12:19 2019	(r349249)
@@ -61,6 +61,9 @@
  * 7.13
  *  - make max number of background requests and congestion threshold
  *    tunables
+ *
+ * 7.14
+ *  - add splice support to fuse device
  */
 
 #ifndef _FUSE_FUSE_KERNEL_H
@@ -81,7 +84,7 @@
 #define FUSE_KERNEL_VERSION 7
 
 /** Minor version number of this interface */
-#define FUSE_KERNEL_MINOR_VERSION 13
+#define FUSE_KERNEL_MINOR_VERSION 14
 
 /** The node ID of the root inode */
 #define FUSE_ROOT_ID 1


More information about the svn-src-projects mailing list