diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2022-08-31 04:49:42 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2022-10-05 08:33:49 +0200 |
commit | aea6794e664a07324288f3d3484b950922baeebd (patch) | |
tree | 189dbb549100f2bcca2c1856f1c0e010d5f78848 /fs/cifs/cifsglob.h | |
parent | smb3: add dynamic trace points for tree disconnect (diff) | |
download | linux-aea6794e664a07324288f3d3484b950922baeebd.tar.xz linux-aea6794e664a07324288f3d3484b950922baeebd.zip |
cifs: Make tcon contain a wrapper structure cached_fids instead of cached_fid
This wrapper structure will later be expanded to contain a list of
fids that are cached and not just the root fid.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index ad606f648bdc..338bc11f682e 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -1228,7 +1228,7 @@ struct cifs_tcon { struct fscache_volume *fscache; /* cookie for share */ #endif struct list_head pending_opens; /* list of incomplete opens */ - struct cached_fid *cfid; /* Cached root fid */ + struct cached_fids *cfids; /* BB add field for back pointer to sb struct(s)? */ #ifdef CONFIG_CIFS_DFS_UPCALL struct list_head ulist; /* cache update list */ |