diff options
| author | Sakshi Bansal <sabansal@redhat.com> | 2016-03-31 15:02:03 +0530 | 
|---|---|---|
| committer | Niels de Vos <ndevos@redhat.com> | 2016-04-07 01:39:48 -0700 | 
| commit | 50b93f72f9a3f5bfd1d610801aecb06823adaa63 (patch) | |
| tree | 0879419553b733cd5330e7b36c1b66655bbb5226 /xlators/nfs | |
| parent | ecdcd519b9d7b50215072f47e00ce326d1242934 (diff) | |
NFS: new option nfs.rdirplus added
When this option is 'disabled', NFS falls back to standard readdir instead
of readdirp
Change-Id: Icaaf4da6533bee56160d4a81e42bb60f7d341945
BUG: 1302948
Signed-off-by: Sakshi Bansal <sabansal@redhat.com>
Reviewed-on: http://review.gluster.org/13782
Smoke: Gluster Build System <jenkins@build.gluster.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Diffstat (limited to 'xlators/nfs')
| -rw-r--r-- | xlators/nfs/server/src/nfs.c | 17 | ||||
| -rw-r--r-- | xlators/nfs/server/src/nfs.h | 1 | ||||
| -rw-r--r-- | xlators/nfs/server/src/nfs3-helpers.c | 1 | ||||
| -rw-r--r-- | xlators/nfs/server/src/nfs3.c | 11 | 
4 files changed, 29 insertions, 1 deletions
diff --git a/xlators/nfs/server/src/nfs.c b/xlators/nfs/server/src/nfs.c index 116854b9109..66bd69d2b4f 100644 --- a/xlators/nfs/server/src/nfs.c +++ b/xlators/nfs/server/src/nfs.c @@ -1073,6 +1073,9 @@ nfs_init_state (xlator_t *this)                          goto free_foppool;                  }          } + +        GF_OPTION_INIT ("nfs.rdirplus", nfs->rdirplus, bool, free_foppool); +  	GF_OPTION_INIT (OPT_SERVER_RPC_STATD, nfs->rpc_statd, path, free_foppool);  	GF_OPTION_INIT (OPT_SERVER_RPC_STATD_PIDFILE, nfs->rpc_statd_pid_file, path, free_foppool); @@ -1285,6 +1288,14 @@ nfs_reconfigure_state (xlator_t *this, dict_t *options)                          OPT_SERVER_GID_CACHE_TIMEOUT, optuint32);          } +        GF_OPTION_RECONF ("nfs.rdirplus", optbool, +                                          options, bool, out); +        if (nfs->rdirplus != optbool) { +                nfs->rdirplus = optbool; +                gf_msg (GF_NFS, GF_LOG_INFO, 0, NFS_MSG_RECONFIG_VALUE, +                        "Reconfigured nfs.rdirplus with value %d", optbool); +        } +          /* reconfig nfs.dynamic-volumes */          ret = dict_get_str_boolean (options, "nfs.dynamic-volumes",                                               GF_NFS_DVM_OFF); @@ -2081,6 +2092,12 @@ struct volume_options options[] = {            .description = "Sets the TTL of an entry in the auth cache. Value is "                           "in seconds."          }, +        { .key  = {"nfs.rdirplus"}, +          .type = GF_OPTION_TYPE_BOOL, +          .default_value = "on", +          .description = "When this option is set to off NFS falls back to " +                         "standard readdir instead of readdirp" +        },          { .key  = {NULL} },  }; diff --git a/xlators/nfs/server/src/nfs.h b/xlators/nfs/server/src/nfs.h index 82df163d494..9bcc88f5548 100644 --- a/xlators/nfs/server/src/nfs.h +++ b/xlators/nfs/server/src/nfs.h @@ -99,6 +99,7 @@ struct nfs_state {          gf_boolean_t            register_portmap;          char                    *rpc_statd;          char                    *rpc_statd_pid_file; +        gf_boolean_t            rdirplus;  };  struct nfs_inode_ctx { diff --git a/xlators/nfs/server/src/nfs3-helpers.c b/xlators/nfs/server/src/nfs3-helpers.c index cfa1ac64397..7eb491142f7 100644 --- a/xlators/nfs/server/src/nfs3-helpers.c +++ b/xlators/nfs/server/src/nfs3-helpers.c @@ -225,6 +225,7 @@ nfs3_errno_to_nfsstat3 (int errnum)                  stat = NFS3ERR_SERVERFAULT;                  break; +        case ENOTSUP:          case ENOSYS:                  stat = NFS3ERR_NOTSUPP;                  break; diff --git a/xlators/nfs/server/src/nfs3.c b/xlators/nfs/server/src/nfs3.c index e2650551814..8cf4db8174a 100644 --- a/xlators/nfs/server/src/nfs3.c +++ b/xlators/nfs/server/src/nfs3.c @@ -4444,6 +4444,8 @@ nfs3_readdir (rpcsvc_request_t *req, struct nfs3_fh *fh, cookie3 cookie,          int                     ret = -EFAULT;          struct nfs3_state       *nfs3 = NULL;          nfs3_call_state_t       *cs = NULL; +        struct nfs_state        *nfs = NULL; +        gf_boolean_t            is_readdirp = !!maxcount;          if ((!req) || (!fh)) {                  gf_msg (GF_NFS3, GF_LOG_ERROR, EINVAL, NFS_MSG_INVALID_ENTRY, @@ -4458,6 +4460,13 @@ nfs3_readdir (rpcsvc_request_t *req, struct nfs3_fh *fh, cookie3 cookie,          nfs3_map_fh_to_volume (nfs3, fh, req, vol, stat, nfs3err);          nfs3_volume_started_check (nfs3, vol, ret, out);          nfs3_handle_call_state_init (nfs3, cs, req, vol, stat, nfs3err); +        nfs = nfs_state (nfs3->nfsx); + +        if (is_readdirp && !nfs->rdirplus) { +                ret = -ENOTSUP; +                stat = nfs3_errno_to_nfsstat3 (-ret); +                goto nfs3err; +        }          cs->cookieverf = cverf;          cs->dircount = dircount; @@ -4471,7 +4480,7 @@ nfs3_readdir (rpcsvc_request_t *req, struct nfs3_fh *fh, cookie3 cookie,  nfs3err:          if (ret < 0) { -                if (maxcount == 0) { +                if (!is_readdirp) {                          nfs3_log_common_res (rpcsvc_request_xid (req),                                               NFS3_READDIR, stat, -ret,                                               cs ? cs->resolvedloc.path : NULL);  | 
