.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* net/sched/sch_teql.c "True" (or "trivial") link equalizer. |
---|
2 | | - * |
---|
3 | | - * This program is free software; you can redistribute it and/or |
---|
4 | | - * modify it under the terms of the GNU General Public License |
---|
5 | | - * as published by the Free Software Foundation; either version |
---|
6 | | - * 2 of the License, or (at your option) any later version. |
---|
7 | 3 | * |
---|
8 | 4 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
---|
9 | 5 | */ |
---|
.. | .. |
---|
128 | 124 | struct teql_sched_data *dat = qdisc_priv(sch); |
---|
129 | 125 | |
---|
130 | 126 | skb_queue_purge(&dat->q); |
---|
131 | | - sch->q.qlen = 0; |
---|
132 | 127 | } |
---|
133 | 128 | |
---|
134 | 129 | static void |
---|