lkml.org 
[lkml]   [2020]   [Jan]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.4 104/203] NFSv2: Fix a typo in encode_sattr()
    Date
    From: Trond Myklebust <trond.myklebust@hammerspace.com>

    commit ad97a995d8edff820d4238bd0dfc69f440031ae6 upstream.

    Encode the mtime correctly.

    Fixes: 95582b0083883 ("vfs: change inode times to use struct timespec64")
    Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

    ---
    fs/nfs/nfs2xdr.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    --- a/fs/nfs/nfs2xdr.c
    +++ b/fs/nfs/nfs2xdr.c
    @@ -370,7 +370,7 @@ static void encode_sattr(struct xdr_stre
    } 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);

    \
     
     \ /
      Last update: 2020-01-17 00:45    [W:3.008 / U:0.000 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site