diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2021-03-09 00:07:33 +0100 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-04-25 23:28:23 +0200 |
commit | ed20f54a3c63a9f75dbd9e341d7fa8e7bf08dcd8 (patch) | |
tree | cdad660d6f2884f03cd03f1ae205e627878f5f31 /fs/cifs/smb2ops.c | |
parent | cifs: add a function to get a cached dir based on its dentry (diff) | |
download | linux-ed20f54a3c63a9f75dbd9e341d7fa8e7bf08dcd8.tar.xz linux-ed20f54a3c63a9f75dbd9e341d7fa8e7bf08dcd8.zip |
cifs: add a timestamp to track when the lease of the cached dir was taken
and clear the timestamp when we receive a lease break.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to '')
-rw-r--r-- | fs/cifs/smb2ops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c index 65d303466581..49cdc6e0d9d8 100644 --- a/fs/cifs/smb2ops.c +++ b/fs/cifs/smb2ops.c @@ -912,6 +912,8 @@ int open_cached_dir(unsigned int xid, struct cifs_tcon *tcon, &rsp_iov[1], sizeof(struct smb2_file_all_info), (char *)&tcon->crfid.file_all_info)) tcon->crfid.file_all_info_is_valid = true; + tcon->crfid.time = jiffies; + oshr_exit: mutex_unlock(&tcon->crfid.fid_mutex); |