sch_drr.c (bf61c8840efe60fd8f91446860b63338fb424158) | sch_drr.c (45203a3b380cee28f570475c0d28c169f908c209) |
---|---|
1/* 2 * net/sched/sch_drr.c Deficit Round Robin scheduler 3 * 4 * Copyright (c) 2008 Patrick McHardy <kaber@trash.net> 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * version 2 as published by the Free Software Foundation. --- 11 unchanged lines hidden (view full) --- 20 21struct drr_class { 22 struct Qdisc_class_common common; 23 unsigned int refcnt; 24 unsigned int filter_cnt; 25 26 struct gnet_stats_basic_packed bstats; 27 struct gnet_stats_queue qstats; | 1/* 2 * net/sched/sch_drr.c Deficit Round Robin scheduler 3 * 4 * Copyright (c) 2008 Patrick McHardy <kaber@trash.net> 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * version 2 as published by the Free Software Foundation. --- 11 unchanged lines hidden (view full) --- 20 21struct drr_class { 22 struct Qdisc_class_common common; 23 unsigned int refcnt; 24 unsigned int filter_cnt; 25 26 struct gnet_stats_basic_packed bstats; 27 struct gnet_stats_queue qstats; |
28 struct gnet_stats_rate_est rate_est; | 28 struct gnet_stats_rate_est64 rate_est; |
29 struct list_head alist; 30 struct Qdisc *qdisc; 31 32 u32 quantum; 33 u32 deficit; 34}; 35 36struct drr_sched { --- 488 unchanged lines hidden --- | 29 struct list_head alist; 30 struct Qdisc *qdisc; 31 32 u32 quantum; 33 u32 deficit; 34}; 35 36struct drr_sched { --- 488 unchanged lines hidden --- |