act_police: remove unnecessary null pointer check
It already has a NULL pointer check of rtab in qdisc_put_rtab(). Remove the check outside of qdisc_put_rtab(). Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
d2adcaa82d
commit
3b69a4c9be
@@ -261,10 +261,8 @@ override:
|
|||||||
failure_unlock:
|
failure_unlock:
|
||||||
spin_unlock_bh(&police->tcf_lock);
|
spin_unlock_bh(&police->tcf_lock);
|
||||||
failure:
|
failure:
|
||||||
if (P_tab)
|
qdisc_put_rtab(P_tab);
|
||||||
qdisc_put_rtab(P_tab);
|
qdisc_put_rtab(R_tab);
|
||||||
if (R_tab)
|
|
||||||
qdisc_put_rtab(R_tab);
|
|
||||||
if (ret == ACT_P_CREATED)
|
if (ret == ACT_P_CREATED)
|
||||||
kfree(police);
|
kfree(police);
|
||||||
return err;
|
return err;
|
||||||
|
Reference in New Issue
Block a user