Commit ad97a995 authored by Trond Myklebust's avatar Trond Myklebust
Browse files

NFSv2: Fix a typo in encode_sattr()



Encode the mtime correctly.

Fixes: 95582b00 ("vfs: change inode times to use struct timespec64")
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent 7d34ff51
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);