sch_htb.c (38a4671cad3f0d277cf48445b49e42a475ebfb6a) sch_htb.c (45203a3b380cee28f570475c0d28c169f908c209)
1/*
2 * net/sched/sch_htb.c Hierarchical token bucket, feed tree version
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
7 * 2 of the License, or (at your option) any later version.
8 *

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

73};
74
75/* interior & leaf nodes; props specific to leaves are marked L: */
76struct htb_class {
77 struct Qdisc_class_common common;
78 /* general class parameters */
79 struct gnet_stats_basic_packed bstats;
80 struct gnet_stats_queue qstats;
1/*
2 * net/sched/sch_htb.c Hierarchical token bucket, feed tree version
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
7 * 2 of the License, or (at your option) any later version.
8 *

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

73};
74
75/* interior & leaf nodes; props specific to leaves are marked L: */
76struct htb_class {
77 struct Qdisc_class_common common;
78 /* general class parameters */
79 struct gnet_stats_basic_packed bstats;
80 struct gnet_stats_queue qstats;
81 struct gnet_stats_rate_est rate_est;
81 struct gnet_stats_rate_est64 rate_est;
82 struct tc_htb_xstats xstats; /* our special stats */
83 int refcnt; /* usage count of this class */
84
85 /* topology */
86 int level; /* our level (see above) */
87 unsigned int children;
88 struct htb_class *parent; /* parent class */
89

--- 1492 unchanged lines hidden ---
82 struct tc_htb_xstats xstats; /* our special stats */
83 int refcnt; /* usage count of this class */
84
85 /* topology */
86 int level; /* our level (see above) */
87 unsigned int children;
88 struct htb_class *parent; /* parent class */
89

--- 1492 unchanged lines hidden ---