sch_hfsc.c (bf61c8840efe60fd8f91446860b63338fb424158) sch_hfsc.c (45203a3b380cee28f570475c0d28c169f908c209)
1/*
2 * Copyright (c) 2003 Patrick McHardy, <kaber@trash.net>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *

--- 100 unchanged lines hidden (view full) ---

109};
110
111struct hfsc_class {
112 struct Qdisc_class_common cl_common;
113 unsigned int refcnt; /* usage count */
114
115 struct gnet_stats_basic_packed bstats;
116 struct gnet_stats_queue qstats;
1/*
2 * Copyright (c) 2003 Patrick McHardy, <kaber@trash.net>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *

--- 100 unchanged lines hidden (view full) ---

109};
110
111struct hfsc_class {
112 struct Qdisc_class_common cl_common;
113 unsigned int refcnt; /* usage count */
114
115 struct gnet_stats_basic_packed bstats;
116 struct gnet_stats_queue qstats;
117 struct gnet_stats_rate_est rate_est;
117 struct gnet_stats_rate_est64 rate_est;
118 unsigned int level; /* class level in hierarchy */
119 struct tcf_proto *filter_list; /* filter list */
120 unsigned int filter_cnt; /* filter count */
121
122 struct hfsc_sched *sched; /* scheduler data */
123 struct hfsc_class *cl_parent; /* parent class */
124 struct list_head siblings; /* sibling classes */
125 struct list_head children; /* child classes */

--- 1628 unchanged lines hidden ---
118 unsigned int level; /* class level in hierarchy */
119 struct tcf_proto *filter_list; /* filter list */
120 unsigned int filter_cnt; /* filter count */
121
122 struct hfsc_sched *sched; /* scheduler data */
123 struct hfsc_class *cl_parent; /* parent class */
124 struct list_head siblings; /* sibling classes */
125 struct list_head children; /* child classes */

--- 1628 unchanged lines hidden ---