]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Fix error reporting when probe_bothports() fails while rewriting mount
authorChuck Lever <chuck.lever@oracle.com>
Fri, 6 Jun 2008 19:07:24 +0000 (15:07 -0400)
committerSteve Dickson <steved@redhat.com>
Fri, 6 Jun 2008 19:07:24 +0000 (15:07 -0400)
options.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/mount/error.c
utils/mount/stropts.c

index 23a91ff792d719e38b22a46730009e49c303b28d..147e919bd56fdd29649ed205f7233ba66e6681b4 100644 (file)
@@ -227,6 +227,9 @@ void mount_error(const char *spec, const char *mount_point, int error)
                        nfs_error(_("%s: mount point %s does not exist"),
                                progname, mount_point);
                break;
                        nfs_error(_("%s: mount point %s does not exist"),
                                progname, mount_point);
                break;
+       case ESPIPE:
+               rpc_mount_errors((char *)spec, 0, 0);
+               break;
        case EIO:
        case EFAULT:
                nfs_error(_("%s: internal error"), progname);
        case EIO:
        case EFAULT:
                nfs_error(_("%s: internal error"), progname);
index 3564f15c098dbe434727f8dc9f6a76ede8ab2674..967fd69531f7a338b13fe7b7775ea3d991bf2af2 100644 (file)
@@ -356,6 +356,8 @@ static struct mount_options *rewrite_mount_options(char *str)
        clnt_addr_t nfs_server = { };
        int p;
 
        clnt_addr_t nfs_server = { };
        int p;
 
+       errno = EIO;
+
        options = po_split(str);
        if (!options)
                return NULL;
        options = po_split(str);
        if (!options)
                return NULL;
@@ -426,7 +428,7 @@ static struct mount_options *rewrite_mount_options(char *str)
        po_remove_all(options, "udp");
 
        if (!probe_bothports(&mnt_server, &nfs_server)) {
        po_remove_all(options, "udp");
 
        if (!probe_bothports(&mnt_server, &nfs_server)) {
-               rpc_mount_errors("rpcbind", 0, 0);
+               errno = ESPIPE;
                goto err;
        }
 
                goto err;
        }
 
@@ -452,6 +454,7 @@ static struct mount_options *rewrite_mount_options(char *str)
 
        }
 
 
        }
 
+       errno = 0;
        return options;
 
 err:
        return options;
 
 err:
@@ -498,10 +501,8 @@ static int nfs_retry_nfs23mount(struct nfsmount_info *mi)
        char **extra_opts = mi->extra_opts;
 
        retry_options = rewrite_mount_options(*extra_opts);
        char **extra_opts = mi->extra_opts;
 
        retry_options = rewrite_mount_options(*extra_opts);
-       if (!retry_options) {
-               errno = EIO;
+       if (!retry_options)
                return 0;
                return 0;
-       }
 
        if (po_join(retry_options, &retry_str) == PO_FAILED) {
                po_destroy(retry_options);
 
        if (po_join(retry_options, &retry_str) == PO_FAILED) {
                po_destroy(retry_options);