diff options
author | David S. Miller <davem@davemloft.net> | 2011-01-24 17:09:35 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-01-24 17:09:35 -0500 |
commit | 5bdc22a56549e7983c6b443298672641952ea035 (patch) | |
tree | fbfd4e7453e4fd23dfef826d4610ed2aae47b36c /include/net/sch_generic.h | |
parent | b6f4098897f30b7ea90a1c1edf35e9b20a9d828a (diff) | |
parent | e92427b289d252cfbd4cb5282d92f4ce1a5bb1fb (diff) |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts:
net/sched/sch_hfsc.c
net/sched/sch_htb.c
net/sched/sch_tbf.c
Diffstat (limited to 'include/net/sch_generic.h')
-rw-r--r-- | include/net/sch_generic.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index d531baa2506a..16626a04cb03 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h | |||
@@ -472,7 +472,6 @@ static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch, | |||
472 | { | 472 | { |
473 | __skb_queue_tail(list, skb); | 473 | __skb_queue_tail(list, skb); |
474 | sch->qstats.backlog += qdisc_pkt_len(skb); | 474 | sch->qstats.backlog += qdisc_pkt_len(skb); |
475 | qdisc_bstats_update(sch, skb); | ||
476 | 475 | ||
477 | return NET_XMIT_SUCCESS; | 476 | return NET_XMIT_SUCCESS; |
478 | } | 477 | } |
@@ -487,8 +486,10 @@ static inline struct sk_buff *__qdisc_dequeue_head(struct Qdisc *sch, | |||
487 | { | 486 | { |
488 | struct sk_buff *skb = __skb_dequeue(list); | 487 | struct sk_buff *skb = __skb_dequeue(list); |
489 | 488 | ||
490 | if (likely(skb != NULL)) | 489 | if (likely(skb != NULL)) { |
491 | sch->qstats.backlog -= qdisc_pkt_len(skb); | 490 | sch->qstats.backlog -= qdisc_pkt_len(skb); |
491 | qdisc_bstats_update(sch, skb); | ||
492 | } | ||
492 | 493 | ||
493 | return skb; | 494 | return skb; |
494 | } | 495 | } |
@@ -501,10 +502,11 @@ static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch) | |||
501 | static inline unsigned int __qdisc_queue_drop_head(struct Qdisc *sch, | 502 | static inline unsigned int __qdisc_queue_drop_head(struct Qdisc *sch, |
502 | struct sk_buff_head *list) | 503 | struct sk_buff_head *list) |
503 | { | 504 | { |
504 | struct sk_buff *skb = __qdisc_dequeue_head(sch, list); | 505 | struct sk_buff *skb = __skb_dequeue(list); |
505 | 506 | ||
506 | if (likely(skb != NULL)) { | 507 | if (likely(skb != NULL)) { |
507 | unsigned int len = qdisc_pkt_len(skb); | 508 | unsigned int len = qdisc_pkt_len(skb); |
509 | sch->qstats.backlog -= len; | ||
508 | kfree_skb(skb); | 510 | kfree_skb(skb); |
509 | return len; | 511 | return len; |
510 | } | 512 | } |