sch_prio: Use NET_XMIT_SUCCESS instead of "0" constant.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@ -113,7 +113,7 @@ prio_requeue(struct sk_buff *skb, struct Qdisc* sch)
|
|||||||
if ((ret = qdisc->ops->requeue(skb, qdisc)) == NET_XMIT_SUCCESS) {
|
if ((ret = qdisc->ops->requeue(skb, qdisc)) == NET_XMIT_SUCCESS) {
|
||||||
sch->q.qlen++;
|
sch->q.qlen++;
|
||||||
sch->qstats.requeues++;
|
sch->qstats.requeues++;
|
||||||
return 0;
|
return NET_XMIT_SUCCESS;
|
||||||
}
|
}
|
||||||
if (net_xmit_drop_count(ret))
|
if (net_xmit_drop_count(ret))
|
||||||
sch->qstats.drops++;
|
sch->qstats.drops++;
|
||||||
|
Reference in New Issue
Block a user