diff options
| author | Poornima G <pgurusid@redhat.com> | 2017-10-10 14:45:03 +0530 | 
|---|---|---|
| committer | Atin Mukherjee <amukherj@redhat.com> | 2017-10-18 14:15:05 +0000 | 
| commit | 77271e9c1efab628d00bc66803be923f451c0bfa (patch) | |
| tree | 4e4183568a2fdda702ae5cdcd4624a53fc39b1cf /xlators/mount | |
| parent | e848410ab6d13871be6b57101788ea5183efe75c (diff) | |
gfproxyd: Let glusterd manage gfproxy daemon
Updates: #242
BUG: 1428063
Change-Id: Iaaf2edf99b2ecc75f6d30762c752a6d445c1c826
Signed-off-by: Poornima G <pgurusid@redhat.com>
Diffstat (limited to 'xlators/mount')
| -rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 8 | ||||
| -rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.h | 3 | ||||
| -rwxr-xr-x | xlators/mount/fuse/utils/mount.glusterfs.in | 7 | 
3 files changed, 18 insertions, 0 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 93c5150cf21..6c6506009cb 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -5671,6 +5671,9 @@ init (xlator_t *this_xl)          GF_OPTION_INIT("event-history", priv->event_history, bool,                         cleanup_exit); +        GF_OPTION_INIT("thin-client", priv->thin_client, bool, +                       cleanup_exit); +          /* user has set only background-qlen, not congestion-threshold,             use the fuse kernel driver formula to set congestion. ie, 75% */          if (dict_get (this_xl->options, "background-qlen") && @@ -5981,5 +5984,10 @@ struct volume_options options[] = {            .description = "This option can be used to enable or disable fuse "            "event history.",          }, +        { .key = {"thin-client"}, +          .type = GF_OPTION_TYPE_BOOL, +          .default_value = "false", +          .description = "Enables thin mount and connects via gfproxyd daemon.", +        },          { .key = {NULL} },  }; diff --git a/xlators/mount/fuse/src/fuse-bridge.h b/xlators/mount/fuse/src/fuse-bridge.h index 2dfef64c975..52718161c24 100644 --- a/xlators/mount/fuse/src/fuse-bridge.h +++ b/xlators/mount/fuse/src/fuse-bridge.h @@ -140,6 +140,9 @@ struct fuse_private {          /* whether to run the unmount daemon */          gf_boolean_t auto_unmount; + +        /* Load the thin volfile, and connect to gfproxyd*/ +        gf_boolean_t         thin_client;  };  typedef struct fuse_private fuse_private_t; diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in index c9ffbe352f0..fd616844d65 100755 --- a/xlators/mount/fuse/utils/mount.glusterfs.in +++ b/xlators/mount/fuse/utils/mount.glusterfs.in @@ -185,6 +185,10 @@ start_glusterfs ()          cmd_line=$(echo "$cmd_line --no-root-squash");      fi +    if [ -n "$thin_client" ]; then +        cmd_line=$(echo "$cmd_line --thin-client"); +    fi +  #options with values start here      if [ -n "$halo_max_latency" ]; then        cmd_line=$(echo "$cmd_line --xlator-option \ @@ -567,6 +571,9 @@ without_options()                  aux_gfid_mount=1              fi              ;; +        "thin-client") +            thin_client=1 +            ;;          "resolve-gids")              resolve_gids=1              ;;  | 
