]> git.kernelconcepts.de Git - mv-sheeva.git/commitdiff
SUNRPC: NFS kernel APIs shouldn't return ENOENT for "transport not found"
authorChuck Lever <chuck.lever@oracle.com>
Tue, 26 Jan 2010 19:04:13 +0000 (14:04 -0500)
committerJ. Bruce Fields <bfields@citi.umich.edu>
Tue, 26 Jan 2010 22:59:21 +0000 (17:59 -0500)
write_ports() converts svc_create_xprt()'s ENOENT error return to
EPROTONOSUPPORT so that rpc.nfsd (in user space) can report an error
message that makes sense.

It turns out that several of the other kernel APIs rpc.nfsd use can
also return ENOENT from svc_create_xprt(), by way of lockd_up().

On the client side, an NFSv2 or NFSv3 mount request can also return
the result of lockd_up().  This error may also be returned during an
NFSv4 mount request, since the NFSv4 callback service uses
svc_create_xprt() to create the callback listener.  An ENOENT error
return results in a confusing error message from the mount command.

Let's have svc_create_xprt() return EPROTONOSUPPORT instead of ENOENT.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/nfsd/nfsctl.c
net/sunrpc/svc_xprt.c

index 2604c3e70ea547f69e19146afbc11fe769f6ba5a..f43ecd61fa8135023343069968a2235b334e4490 100644 (file)
@@ -1002,12 +1002,8 @@ static ssize_t __write_ports_addxprt(char *buf)
 
        err = svc_create_xprt(nfsd_serv, transport,
                                PF_INET, port, SVC_SOCK_ANONYMOUS);
-       if (err < 0) {
-               /* Give a reasonable perror msg for bad transport string */
-               if (err == -ENOENT)
-                       err = -EPROTONOSUPPORT;
+       if (err < 0)
                return err;
-       }
        return 0;
 }
 
index f886ff367c8069c4e72e35ab08cb6ac3dd6e4e32..d7ec5caf998c33c157f34d7069dff0cec7833725 100644 (file)
@@ -235,7 +235,10 @@ int svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
  err:
        spin_unlock(&svc_xprt_class_lock);
        dprintk("svc: transport %s not found\n", xprt_name);
-       return -ENOENT;
+
+       /* This errno is exposed to user space.  Provide a reasonable
+        * perror msg for a bad transport. */
+       return -EPROTONOSUPPORT;
 }
 EXPORT_SYMBOL_GPL(svc_create_xprt);