From: Phillip Potter Date: Sat, 17 Mar 2018 21:06:56 +0000 (+0000) Subject: fs: cifs: Replace _free_xid call in cifs_root_iget function X-Git-Tag: for-linus-20180413~51^2~8 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=31cd106bb141b54ba4db5c1078c3f58f0c6e8dfa;p=linux-2.6-block.git 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: Phillip Potter Signed-off-by: Steve French --- diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 8f9a8cc7cc62..c98a852180b1 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -1066,10 +1066,7 @@ iget_no_retry: 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; }