提交 31cd106b 编写于 作者: P Phillip Potter 提交者: 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: NPhillip Potter <phil@philpotter.co.uk>
Signed-off-by: NSteve French <smfrench@gmail.com>
上级 d68f353f
......@@ -1066,10 +1066,7 @@ struct inode *cifs_root_iget(struct super_block *sb)
out:
kfree(path);
/* can not call macro free_xid here since in a void func
* TODO: This is no longer true
*/
_free_xid(xid);
free_xid(xid);
return inode;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册