From: Steve Dickson <SteveD@redhat.com>
To: Linux NFS Mailing list <linux-nfs@vger.kernel.org>
Subject: Re: [PATCH] mount.nfs: Teach mount.nfs about the mountversion option
Date: Sat, 21 Nov 2015 10:34:53 -0500 [thread overview]
Message-ID: <56508F1D.6080001@RedHat.com> (raw)
In-Reply-To: <1436193748-4301-1-git-send-email-steved@redhat.com>
On 07/06/2015 10:42 AM, Steve Dickson wrote:
> When the mountversion option is used, there should
> not be any mount negotiations with the server.
>
> Also, when the option is used, its know that the mount
> is a v4 mount and a V_SPECFIC type.
>
> Signed-off-by: Steve Dickson <steved@redhat.com>
Committed..
steved.
> ---
> utils/mount/network.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/utils/mount/network.c b/utils/mount/network.c
> index b5ed850..ebc39d3 100644
> --- a/utils/mount/network.c
> +++ b/utils/mount/network.c
> @@ -92,6 +92,7 @@ static const char *nfs_version_opttbl[] = {
> "v4",
> "vers",
> "nfsvers",
> + "minorversion",
> NULL,
> };
>
> @@ -1272,7 +1273,11 @@ nfs_nfs_version(struct mount_options *options, struct nfs_version *version)
> if (!(version->major = strtol(version_val, &cptr, 10)))
> goto ret_error;
>
> - if (version->major < 4)
> + if (strcmp(nfs_version_opttbl[i], "minorversion") == 0) {
> + version->v_mode = V_SPECIFIC;
> + version->minor = version->major;
> + version->major = 4;
> + } else if (version->major < 4)
> version->v_mode = V_SPECIFIC;
>
> if (*cptr == '.') {
>
prev parent reply other threads:[~2015-11-21 15:34 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-06 14:42 [PATCH] mount.nfs: Teach mount.nfs about the mountversion option Steve Dickson
2015-07-06 15:19 ` Trond Myklebust
2015-07-06 16:50 ` Steve Dickson
2015-07-06 16:53 ` Trond Myklebust
2015-07-06 17:36 ` Steve Dickson
2015-07-06 22:21 ` Kinglong Mee
2015-07-06 22:29 ` Trond Myklebust
2015-07-10 15:49 ` Steve Dickson
2015-11-20 15:23 ` Steve Dickson
2015-11-21 15:34 ` Steve Dickson [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56508F1D.6080001@RedHat.com \
--to=steved@redhat.com \
--cc=linux-nfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.