Date: Mon, 17 Sep 2012 03:12:42 +0000 (UTC) From: Attilio Rao <attilio@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r240591 - projects/fuse/sys/fs/fuse Message-ID: <201209170312.q8H3CgOX036496@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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, "");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209170312.q8H3CgOX036496>