NFSv4: Fix an embarassing typo in encode_attrs()
Apparently, we have never been able to set the atime correctly from the NFSv4 client. Reported-by: 小倉一夫 <ka-ogura@bd6.so-net.ne.jp> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> Cc: stable@kernel.org
This commit is contained in:
@@ -862,8 +862,8 @@ static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const
|
|||||||
bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
|
bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
|
||||||
*p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
|
*p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
|
||||||
*p++ = cpu_to_be32(0);
|
*p++ = cpu_to_be32(0);
|
||||||
*p++ = cpu_to_be32(iap->ia_mtime.tv_sec);
|
*p++ = cpu_to_be32(iap->ia_atime.tv_sec);
|
||||||
*p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
|
*p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
|
||||||
}
|
}
|
||||||
else if (iap->ia_valid & ATTR_ATIME) {
|
else if (iap->ia_valid & ATTR_ATIME) {
|
||||||
bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
|
bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
|
||||||
|
Reference in New Issue
Block a user