diff options
author | Kaushal M <kaushal@redhat.com> | 2012-06-06 17:28:40 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-06-06 12:37:01 -0700 |
commit | 86ff555eaaefb616b3dde5924a40271d99314861 (patch) | |
tree | 9f1f1283276fb397c2e9fe511788276b277aac28 /xlators/mount | |
parent | 212e9c12c08a266c84b60cb184ed49c01cf3c158 (diff) |
mount.glusterfs: Add support for {attribute,entry}-timeout options
Change-Id: Ib41a2537ac86513a008029fca818951706a144f7
BUG: 829279
Signed-off-by: Kaushal M <kaushal@redhat.com>
Reviewed-on: http://review.gluster.com/3530
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/mount')
-rwxr-xr-x | xlators/mount/fuse/utils/mount.glusterfs.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in index ca33575eb6d..ee956885c4c 100755 --- a/xlators/mount/fuse/utils/mount.glusterfs.in +++ b/xlators/mount/fuse/utils/mount.glusterfs.in @@ -124,6 +124,14 @@ start_glusterfs () cmd_line=$(echo "$cmd_line --volume-name=$volume_name"); fi + if [ -n "$attribute_timeout" ]; then + cmd_line=$(echo "$cmd_line --attribute-time=$attribute_timeout"); + fi + + if [ -n "$entry_timeout" ]; then + cmd_line=$(echo "$cmd_line --entry-timeout=$entry_timeout"); + fi + # for rdma volume, we have to fetch volfile with '.rdma' added # to volume name, so that it fetches the right client vol file volume_id_rdma=""; @@ -309,6 +317,9 @@ main () volfile_max_fetch_attempts=$value ;; "backupvolfile-server") backupvolfile_server=$value ;; + "attribute-timeout") + attribute_timeout=$value ;; + "entry-timeout") entry_timeout=$value ;; *) echo "unknown option $key (ignored)" ;; esac esac |