From: Steve Dickson <SteveD@redhat.com>
To: Kinglong Mee <kinglongmee@gmail.com>
Cc: bcodding@redhat.com,
"linux-nfs@vger.kernel.org" <linux-nfs@vger.kernel.org>
Subject: Re: [PATCH] mount: make sure mounting nfs with v4,vers=4 and nfsvers=4
Date: Thu, 07 May 2015 10:13:56 -0400 [thread overview]
Message-ID: <554B7324.3010904@RedHat.com> (raw)
In-Reply-To: <552A5F3F.1090206@gmail.com>
On 04/12/2015 08:04 AM, Kinglong Mee wrote:
> When mounting nfs with -ov4, -overs=4 or -onfsvers=4, fail as,
>
> # mount -t nfs -ov4 192.168.31.12:/ /testidr/
> mount.nfs: access denied by server while mounting 192.168.31.12:/
>
> Fixes: f980298853 "mount.nfs: configurable minor version defaults"
> Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Committed...
steved
> ---
> utils/mount/stropts.c | 12 +++---------
> 1 file changed, 3 insertions(+), 9 deletions(-)
>
> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
> index df67fac..2ae532e 100644
> --- a/utils/mount/stropts.c
> +++ b/utils/mount/stropts.c
> @@ -108,12 +108,6 @@ static void nfs_default_version(struct nfsmount_info *mi)
> return;
> }
>
> - if (mi->version.v_mode == V_GENERAL &&
> - config_default_vers.v_mode == V_DEFAULT) {
> - mi->version.v_mode = V_SPECIFIC;
> - return;
> - }
> -
> if (mi->version.v_mode == V_DEFAULT &&
> config_default_vers.v_mode != V_DEFAULT) {
> mi->version.major = config_default_vers.major;
> @@ -121,9 +115,9 @@ static void nfs_default_version(struct nfsmount_info *mi)
> return;
> }
>
> - if (mi->version.v_mode == V_GENERAL &&
> - config_default_vers.v_mode != V_DEFAULT) {
> - if (mi->version.major == config_default_vers.major)
> + if (mi->version.v_mode == V_GENERAL) {
> + if (config_default_vers.v_mode != V_DEFAULT &&
> + mi->version.major == config_default_vers.major)
> mi->version.minor = config_default_vers.minor;
> return;
> }
>
prev parent reply other threads:[~2015-05-07 14:13 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-12 12:04 [PATCH] mount: make sure mounting nfs with v4,vers=4 and nfsvers=4 Kinglong Mee
2015-04-13 12:16 ` Benjamin Coddington
2015-04-13 12:21 ` Kinglong Mee
2015-04-13 12:43 ` Benjamin Coddington
2015-05-06 13:36 ` Kinglong Mee
2015-05-06 18:37 ` Steve Dickson
2015-05-07 14:13 ` 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=554B7324.3010904@RedHat.com \
--to=steved@redhat.com \
--cc=bcodding@redhat.com \
--cc=kinglongmee@gmail.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.