NFSv2: Fix a typo in encode_sattr()
Encode the mtime correctly.
Fixes: 95582b0083
("vfs: change inode times to use struct timespec64")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
This commit is contained in:
parent
7d34ff5141
commit
ad97a995d8
|
@ -370,7 +370,7 @@ static void encode_sattr(struct xdr_stream *xdr, const struct iattr *attr,
|
|||
} else
|
||||
p = xdr_time_not_set(p);
|
||||
if (attr->ia_valid & ATTR_MTIME_SET) {
|
||||
ts = timespec64_to_timespec(attr->ia_atime);
|
||||
ts = timespec64_to_timespec(attr->ia_mtime);
|
||||
xdr_encode_time(p, &ts);
|
||||
} else if (attr->ia_valid & ATTR_MTIME) {
|
||||
ts = timespec64_to_timespec(attr->ia_mtime);
|
||||
|
|
Loading…
Reference in New Issue