diff options
Diffstat (limited to 'net/sched/sch_teql.c')
-rw-r--r-- | net/sched/sch_teql.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/net/sched/sch_teql.c b/net/sched/sch_teql.c index bf03e7fa1849..cfc8e7caba62 100644 --- a/net/sched/sch_teql.c +++ b/net/sched/sch_teql.c | |||
@@ -93,16 +93,6 @@ teql_enqueue(struct sk_buff *skb, struct Qdisc* sch) | |||
93 | return NET_XMIT_DROP; | 93 | return NET_XMIT_DROP; |
94 | } | 94 | } |
95 | 95 | ||
96 | static int | ||
97 | teql_requeue(struct sk_buff *skb, struct Qdisc* sch) | ||
98 | { | ||
99 | struct teql_sched_data *q = qdisc_priv(sch); | ||
100 | |||
101 | __skb_queue_head(&q->q, skb); | ||
102 | sch->qstats.requeues++; | ||
103 | return 0; | ||
104 | } | ||
105 | |||
106 | static struct sk_buff * | 96 | static struct sk_buff * |
107 | teql_dequeue(struct Qdisc* sch) | 97 | teql_dequeue(struct Qdisc* sch) |
108 | { | 98 | { |
@@ -441,7 +431,6 @@ static __init void teql_master_setup(struct net_device *dev) | |||
441 | ops->enqueue = teql_enqueue; | 431 | ops->enqueue = teql_enqueue; |
442 | ops->dequeue = teql_dequeue; | 432 | ops->dequeue = teql_dequeue; |
443 | ops->peek = teql_peek; | 433 | ops->peek = teql_peek; |
444 | ops->requeue = teql_requeue; | ||
445 | ops->init = teql_qdisc_init; | 434 | ops->init = teql_qdisc_init; |
446 | ops->reset = teql_reset; | 435 | ops->reset = teql_reset; |
447 | ops->destroy = teql_destroy; | 436 | ops->destroy = teql_destroy; |