cifs: start DFS cache refresher in cifs_mount()
authorPaulo Alcantara <palcantara@suse.de>
Wed, 14 Nov 2018 19:16:44 +0000 (17:16 -0200)
committerSteve French <stfrench@microsoft.com>
Fri, 28 Dec 2018 16:13:11 +0000 (10:13 -0600)
Start the DFS cache refresh worker per volume during cifs mount.

Signed-off-by: Paulo Alcantara <palcantara@suse.de>
Reviewed-by: Aurelien Aptel <aaptel@suse.de>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/cifs/connect.c

index 8de2173..ec2498f 100644 (file)
@@ -4594,6 +4594,11 @@ int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol)
        }
        spin_unlock(&cifs_tcp_ses_lock);
 
+       rc = dfs_cache_add_vol(vol, cifs_sb->origin_fullpath);
+       if (rc) {
+               kfree(cifs_sb->origin_fullpath);
+               goto error;
+       }
        /*
         * After reconnecting to a different server, unique ids won't
         * match anymore, so we disable serverino. This prevents
@@ -4836,6 +4841,7 @@ cifs_umount(struct cifs_sb_info *cifs_sb)
        kfree(cifs_sb->mountdata);
        kfree(cifs_sb->prepath);
 #ifdef CONFIG_CIFS_DFS_UPCALL
+       dfs_cache_del_vol(cifs_sb->origin_fullpath);
        kfree(cifs_sb->origin_fullpath);
 #endif
        call_rcu(&cifs_sb->rcu, delayed_free);