aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_dsmark.c
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2012-05-04 04:37:21 +0000
committerDavid S. Miller <davem@davemloft.net>2012-05-04 11:50:05 -0400
commit17045755193a93fbd2d97db9aad5e726fc8c2a6d (patch)
treec12afe250c532626d752f4d894f9537e9d292d0c /net/sched/sch_dsmark.c
parentixgbe: Update link flow control to correctly handle multiple packet buffer DCB (diff)
downloadlinux-dev-17045755193a93fbd2d97db9aad5e726fc8c2a6d.tar.xz
linux-dev-17045755193a93fbd2d97db9aad5e726fc8c2a6d.zip
net: sched: factorize code (qdisc_drop())
Use qdisc_drop() helper where possible. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_dsmark.c')
-rw-r--r--net/sched/sch_dsmark.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sched/sch_dsmark.c b/net/sched/sch_dsmark.c
index 389b856c6653..3886365cc207 100644
--- a/net/sched/sch_dsmark.c
+++ b/net/sched/sch_dsmark.c
@@ -265,8 +265,7 @@ static int dsmark_enqueue(struct sk_buff *skb, struct Qdisc *sch)
return NET_XMIT_SUCCESS;
drop:
- kfree_skb(skb);
- sch->qstats.drops++;
+ qdisc_drop(skb, sch);
return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
}