diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2021-03-09 09:07:33 +1000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-04-25 16:28:23 -0500 |
commit | ed20f54a3c63a9f75dbd9e341d7fa8e7bf08dcd8 (patch) | |
tree | cdad660d6f2884f03cd03f1ae205e627878f5f31 /fs/cifs/cifsglob.h | |
parent | 6ef4e9cbe15df691323af007831dab4e70faa1cf (diff) | |
download | lwn-ed20f54a3c63a9f75dbd9e341d7fa8e7bf08dcd8.tar.gz lwn-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 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 64a1095d7cfd..b23a0ee8c6f8 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -988,6 +988,7 @@ struct cached_fid { bool is_valid:1; /* Do we have a useable root fid */ bool file_all_info_is_valid:1; bool has_lease:1; + unsigned long time; /* jiffies of when lease was taken */ struct kref refcount; struct cifs_fid *fid; struct mutex fid_mutex; |