diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2021-03-09 09:07:29 +1000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-04-25 16:28:23 -0500 |
commit | 45c0f1aabea9e6acc5332b93faca9803c6e9b19a (patch) | |
tree | 76fa21d04d8f795255db3db723508e7bdcb4aac0 /fs/cifs/smb2pdu.c | |
parent | e6eb19504e23607816cd4df35e2633aef2540e96 (diff) | |
download | lwn-45c0f1aabea9e6acc5332b93faca9803c6e9b19a.tar.gz lwn-45c0f1aabea9e6acc5332b93faca9803c6e9b19a.zip |
cifs: rename the *_shroot* functions to *_cached_dir*
These functions will eventually be used to cache any directory, not just the root
so change the names.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/smb2pdu.c')
-rw-r--r-- | fs/cifs/smb2pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c index 2199a9bfae8f..e36c2a867783 100644 --- a/fs/cifs/smb2pdu.c +++ b/fs/cifs/smb2pdu.c @@ -1857,7 +1857,7 @@ SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon) if ((tcon->need_reconnect) || (tcon->ses->need_reconnect)) return 0; - close_shroot_lease(&tcon->crfid); + close_cached_dir_lease(&tcon->crfid); rc = smb2_plain_req_init(SMB2_TREE_DISCONNECT, tcon, ses->server, (void **) &req, |