diff options
author | J. Bruce Fields <bfields@fieldses.org> | 2006-08-24 15:44:12 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-08-24 15:51:59 -0400 |
commit | 3cedf13af9f7e61aca0dbbd11b601ac93bf93a9f (patch) | |
tree | 4755f3f0de0439ba83b32b6a238064a58a751f64 /include | |
parent | 8e037094c414172481c5ce903efdab50ce932343 (diff) | |
download | linux-3.10-3cedf13af9f7e61aca0dbbd11b601ac93bf93a9f.tar.gz linux-3.10-3cedf13af9f7e61aca0dbbd11b601ac93bf93a9f.tar.bz2 linux-3.10-3cedf13af9f7e61aca0dbbd11b601ac93bf93a9f.zip |
NFSv4: increase client-provided nfs4 clientid size
Neil Brown observed that the current limit of 32 bytes isn't enough to hold two
ip addresses and the rest of the stuff we're putting in it, so it's often
truncated to the point where it's unlikely to be unique. This can cause
spurious CLID_INUSE's from the server.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
(cherry picked from fc8c17ec251e984ab3df9182ed097aa5b577c915 commit)
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nfs_xdr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 2d3fb6416d9..db9cbf68e12 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -659,7 +659,7 @@ struct nfs4_rename_res { struct nfs4_setclientid { const nfs4_verifier * sc_verifier; /* request */ unsigned int sc_name_len; - char sc_name[32]; /* request */ + char sc_name[48]; /* request */ u32 sc_prog; /* request */ unsigned int sc_netid_len; char sc_netid[4]; /* request */ |