net: Use NET_XMIT_SUCCESS where possible.

This is based on work originally done by Patric McHardy.

Signed-off-by: Ben Greear <greearb@candelatech.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Ben Greear
2010-08-10 01:45:40 -07:00
committed by David S. Miller
parent 06d88e4a88
commit 9871e50edd
4 changed files with 6 additions and 6 deletions

View File

@@ -334,7 +334,7 @@ sfq_enqueue(struct sk_buff *skb, struct Qdisc *sch)
if (++sch->q.qlen <= q->limit) {
sch->bstats.bytes += qdisc_pkt_len(skb);
sch->bstats.packets++;
return 0;
return NET_XMIT_SUCCESS;
}
sfq_drop(sch);