diff options
author | Shyam Prasad N <sprasad@microsoft.com> | 2021-12-02 07:14:42 +0000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-12-03 12:29:59 -0600 |
commit | 5bf91ef03d987eb617dffccbb0bf38b2451bf37f (patch) | |
tree | 2c73a9fc9ea7198b2e43ccf8d8f8749f854c52a8 /fs/cifs/inode.c | |
parent | 65de262a209da0951eb9bc60b3b7faf3bbffa38a (diff) | |
download | linux-rpi-5bf91ef03d987eb617dffccbb0bf38b2451bf37f.tar.gz linux-rpi-5bf91ef03d987eb617dffccbb0bf38b2451bf37f.tar.bz2 linux-rpi-5bf91ef03d987eb617dffccbb0bf38b2451bf37f.zip |
cifs: wait for tcon resource_id before getting fscache super
The logic for initializing tcon->resource_id is done inside
cifs_root_iget. fscache super cookie relies on this for aux
data. So we need to push the fscache initialization to this
later point during mount.
Signed-off-by: Shyam Prasad N <sprasad@microsoft.com>
Reviewed-by: Paulo Alcantara (SUSE) <pc@cjr.nz>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 82848412ad85..96d083db1737 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -1376,6 +1376,13 @@ iget_no_retry: inode = ERR_PTR(rc); } + /* + * The cookie is initialized from volume info returned above. + * Inside cifs_fscache_get_super_cookie it checks + * that we do not get super cookie twice. + */ + cifs_fscache_get_super_cookie(tcon); + out: kfree(path); free_xid(xid); |