diff options
author | Shreyas Siravara <sshreyas@fb.com> | 2016-12-20 12:03:44 -0800 |
---|---|---|
committer | Shreyas Siravara <sshreyas@fb.com> | 2016-12-20 15:45:29 -0800 |
commit | 11afb5954e43848f5cf5ba7eac0f7ad8ef233934 (patch) | |
tree | 1816afeade359602745c45ca69458047e9720186 | |
parent | 681eb5475386c7357b0f583630fa2799b51d3f54 (diff) |
nfs: [FB-ONLY] Disable rmtab
Summary:
- We have disabled the use of rmtab in our environment due to the its
impact on performance in NFS.
Signed-off-by: Shreyas Siravara <sshreyas@fb.com>
Change-Id: I6c2db19e49791aa4938f38a55dbb8ee3e17661e9
Reviewed-on: http://review.gluster.org/16220
Smoke: Gluster Build System <jenkins@build.gluster.org>
Tested-by: Shreyas Siravara <sshreyas@fb.com>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Kevin Vigor <kvigor@fb.com>
-rw-r--r-- | xlators/nfs/server/src/nfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/nfs/server/src/nfs.c b/xlators/nfs/server/src/nfs.c index 94d939ac1cb..d5087f195ca 100644 --- a/xlators/nfs/server/src/nfs.c +++ b/xlators/nfs/server/src/nfs.c @@ -2043,7 +2043,7 @@ struct volume_options options[] = { }, { .key = {"nfs.mount-rmtab"}, .type = GF_OPTION_TYPE_PATH, - .default_value = NFS_DATADIR "/rmtab", + .default_value = "/-", .description = "Set the location of the cache file that is used to " "list all the NFS-clients that have connected " "through the MOUNT protocol. If this is on shared " |