Commit 31cd106b authored by Phillip Potter's avatar Phillip Potter Committed by Steve French

fs: cifs: Replace _free_xid call in cifs_root_iget function

Modify end of cifs_root_iget function in fs/cifs/inode.c to call
free_xid(xid) instead of _free_xid(xid), thereby allowing debug
notification of this action when enabled.
Signed-off-by: default avatarPhillip Potter <phil@philpotter.co.uk>
Signed-off-by: default avatarSteve French <smfrench@gmail.com>
parent d68f353f
...@@ -1066,10 +1066,7 @@ struct inode *cifs_root_iget(struct super_block *sb) ...@@ -1066,10 +1066,7 @@ struct inode *cifs_root_iget(struct super_block *sb)
out: out:
kfree(path); kfree(path);
/* can not call macro free_xid here since in a void func free_xid(xid);
* TODO: This is no longer true
*/
_free_xid(xid);
return inode; return inode;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment