svn commit: r240591 - projects/fuse/sys/fs/fuse
Attilio Rao
attilio at FreeBSD.org
Mon Sep 17 03:12:43 UTC 2012
Author: attilio
Date: Mon Sep 17 03:12:42 2012
New Revision: 240591
URL: http://svn.freebsd.org/changeset/base/240591
Log:
Disable the revoking mechanism as it is still not ready to be used
and add a comment explaining that it needs further love.
In collaboration with: pho
Modified:
projects/fuse/sys/fs/fuse/fuse_vnops.c
Modified: projects/fuse/sys/fs/fuse/fuse_vnops.c
==============================================================================
--- projects/fuse/sys/fs/fuse/fuse_vnops.c Mon Sep 17 02:50:16 2012 (r240590)
+++ projects/fuse/sys/fs/fuse/fuse_vnops.c Mon Sep 17 03:12:42 2012 (r240591)
@@ -179,7 +179,11 @@ int fuse_lookup_cache_enable = 1;
SYSCTL_INT(_vfs_fuse, OID_AUTO, lookup_cache_enable, CTLFLAG_RW,
&fuse_lookup_cache_enable, 0, "");
-static int fuse_reclaim_revoked = 1;
+/*
+ * XXX: This feature is highly experimental and can bring to instabilities,
+ * needs revisiting before to be enabled by default.
+ */
+static int fuse_reclaim_revoked = 0;
SYSCTL_INT(_vfs_fuse, OID_AUTO, reclaim_revoked, CTLFLAG_RW,
&fuse_reclaim_revoked, 0, "");
More information about the svn-src-projects
mailing list