mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 18:54:09 +08:00
infiniband: remove redundant condition check before debugfs_remove
debugfs_remove has taken the IS_ERR_OR_NULL into account. Just remove the unnecessary condition. Signed-off-by: zhong jiang <zhongjiang@huawei.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
parent
a7ee18bdee
commit
3e5d60bcc8
@ -165,6 +165,5 @@ void usnic_debugfs_flow_add(struct usnic_ib_qp_grp_flow *qp_flow)
|
||||
|
||||
void usnic_debugfs_flow_remove(struct usnic_ib_qp_grp_flow *qp_flow)
|
||||
{
|
||||
if (!IS_ERR_OR_NULL(qp_flow->dbgfs_dentry))
|
||||
debugfs_remove(qp_flow->dbgfs_dentry);
|
||||
debugfs_remove(qp_flow->dbgfs_dentry);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user