From: Steve Dickson <SteveD@redhat.com>
To: NeilBrown <neilb@suse.de>, NFS <linux-nfs@vger.kernel.org>
Subject: Re: [PATCH - nfs-utils] mount: improve error message when statd cannot be started.
Date: Thu, 26 Mar 2015 11:30:19 -0400 [thread overview]
Message-ID: <5514260B.30508@RedHat.com> (raw)
In-Reply-To: <20150323164414.7eca921f@notabene.brown>
On 03/23/2015 01:44 AM, NeilBrown wrote:
>
>
> If you try to mount and NFSv3 filesystem, and statd is not running
> and cannot be started (maybe rpcbind isn't running either), the
> error message is:
>
> mount.nfs: rpc.statd is not running but is required for remote locking.
> mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
> mount.nfs: an incorrect mount option was specified
>
> That last line is incorrect and misleading: no incorret mount option was
> specified.
>
> This line comes from mount_error() in error.c. In this case that
> function doesn't really need to provide any more information.
>
> So introduce a concention that EALREADY means an error message has
> already been printed, and use it to suppress that message.
>
> Signed-off-by: NeilBrown <neilb@suse.de>
Committed...
steved.
>
> diff --git a/utils/mount/error.c b/utils/mount/error.c
> index e06f598e96e3..c9797fc380c4 100644
> --- a/utils/mount/error.c
> +++ b/utils/mount/error.c
> @@ -247,6 +247,9 @@ void mount_error(const char *spec, const char *mount_point, int error)
> nfs_error(_("%s: please report the error to" PACKAGE_BUGREPORT),
> progname);
> break;
> + case EALREADY:
> + /* Error message has already been provided */
> + break;
> default:
> nfs_error(_("%s: %s"),
> progname, strerror(error));
> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
> index 76ecb3292860..df67facdd9d1 100644
> --- a/utils/mount/stropts.c
> +++ b/utils/mount/stropts.c
> @@ -298,6 +298,7 @@ static int nfs_verify_lock_option(struct mount_options *options)
> "required for remote locking."), progname);
> nfs_error(_("%s: Either use '-o nolock' to keep "
> "locks local, or start statd."), progname);
> + errno = EALREADY; /* Don't print further error message */
> return 0;
> }
>
>
prev parent reply other threads:[~2015-03-26 15:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-23 5:44 [PATCH - nfs-utils] mount: improve error message when statd cannot be started NeilBrown
2015-03-26 15:30 ` 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=5514260B.30508@RedHat.com \
--to=steved@redhat.com \
--cc=linux-nfs@vger.kernel.org \
--cc=neilb@suse.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).