diff options
author | Peng Tao <bergwolf@gmail.com> | 2011-07-30 20:52:34 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2011-07-31 12:18:15 -0400 |
commit | 3557c6c3be5b2ca0b11365db7f8a813253eb520b (patch) | |
tree | f0f333f0a331c2ae2b68b73e3a9dc7e8f38feffc /fs/nfs/nfs4xdr.c | |
parent | a9bae5666d0510ad69bdb437371c9a3e6b770705 (diff) |
pnfs: use lwb as layoutcommit length
Using NFS4_MAX_UINT64 will break current protocol.
[Needed in v3.0]
CC: Stable Tree <stable@kernel.org>
Signed-off-by: Peng Tao <peng_tao@emc.com>
Signed-off-by: Jim Rees <rees@umich.edu>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4xdr.c')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index c191a9baa422..b851b560a6f8 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c | |||
@@ -1916,7 +1916,7 @@ encode_layoutcommit(struct xdr_stream *xdr, | |||
1916 | *p++ = cpu_to_be32(OP_LAYOUTCOMMIT); | 1916 | *p++ = cpu_to_be32(OP_LAYOUTCOMMIT); |
1917 | /* Only whole file layouts */ | 1917 | /* Only whole file layouts */ |
1918 | p = xdr_encode_hyper(p, 0); /* offset */ | 1918 | p = xdr_encode_hyper(p, 0); /* offset */ |
1919 | p = xdr_encode_hyper(p, NFS4_MAX_UINT64); /* length */ | 1919 | p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */ |
1920 | *p++ = cpu_to_be32(0); /* reclaim */ | 1920 | *p++ = cpu_to_be32(0); /* reclaim */ |
1921 | p = xdr_encode_opaque_fixed(p, args->stateid.data, NFS4_STATEID_SIZE); | 1921 | p = xdr_encode_opaque_fixed(p, args->stateid.data, NFS4_STATEID_SIZE); |
1922 | *p++ = cpu_to_be32(1); /* newoffset = TRUE */ | 1922 | *p++ = cpu_to_be32(1); /* newoffset = TRUE */ |