On umount, cifs_sb->tlink_tree might contain entries that do not represent
a valid tcon.
Check the tcon for error before we dereference it.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Cc: stable@vger.kernel.org
Reviewed-by: Shyam Prasad N <sprasad@microsoft.com>
Reported-by: Xiaoli Feng <xifeng@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
         * before we kill the sb.
         */
        if (cifs_sb->root) {
-               node = rb_first(root);
-               while (node != NULL) {
+               for (node = rb_first(root); node; node = rb_next(node)) {
                        tlink = rb_entry(node, struct tcon_link, tl_rbnode);
                        tcon = tlink_tcon(tlink);
+                       if (IS_ERR(tcon))
+                               continue;
                        cfid = &tcon->crfid;
                        mutex_lock(&cfid->fid_mutex);
                        if (cfid->dentry) {
                                cfid->dentry = NULL;
                        }
                        mutex_unlock(&cfid->fid_mutex);
-                       node = rb_next(node);
                }
 
                /* finally release root dentry */