]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
nfsd: Update NFS server comments related to RDMA support
authorChuck Lever <chuck.lever@oracle.com>
Tue, 1 Mar 2016 18:05:27 +0000 (13:05 -0500)
committerJ. Bruce Fields <bfields@redhat.com>
Tue, 1 Mar 2016 21:06:32 +0000 (13:06 -0800)
The server does indeed now support NFSv4.1 on RDMA transports. It
does not support shifting an RDMA-capable TCP transport (such as
iWARP) to RDMA mode.

Reported-by: Shirley Ma <shirley.ma@oracle.com>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/nfs4state.c
fs/nfsd/nfs4xdr.c

index 9d20c6a54734f6065ff3ffe756966464ba7c1b13..d4b0b789ea2435cb53c4eb212ce52d425fdbff11 100644 (file)
@@ -2711,10 +2711,9 @@ nfsd4_create_session(struct svc_rqst *rqstp,
                goto out_free_conn;
        }
        status = nfs_ok;
-       /*
-        * We do not support RDMA or persistent sessions
-        */
+       /* Persistent sessions are not supported */
        cr_ses->flags &= ~SESSION4_PERSIST;
+       /* Upshifting from TCP to RDMA is not supported */
        cr_ses->flags &= ~SESSION4_RDMA;
 
        init_session(rqstp, new, conf, cr_ses);
index 1600ec470ce75684008ca9385a498dd600c64600..aa87954b4af28afb4dfe5d696a42ab30338a3009 100644 (file)
@@ -3063,7 +3063,7 @@ static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp,
                p = xdr_encode_opaque_fixed(p, bcts->sessionid.data,
                                                NFS4_MAX_SESSIONID_LEN);
                *p++ = cpu_to_be32(bcts->dir);
-               /* Sorry, we do not yet support RDMA over 4.1: */
+               /* Upshifting from TCP to RDMA is not supported */
                *p++ = cpu_to_be32(0);
        }
        return nfserr;