Commit 7201c1dd authored by Vasily Averin's avatar Vasily Averin Committed by David S. Miller

cbq: now_rt removal

Now q->now_rt is identical to q->now and is not required anymore.
Signed-off-by: default avatarVasily Averin <vvs@openvz.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 73d0f37a
...@@ -159,7 +159,6 @@ struct cbq_sched_data { ...@@ -159,7 +159,6 @@ struct cbq_sched_data {
struct cbq_class *tx_borrowed; struct cbq_class *tx_borrowed;
int tx_len; int tx_len;
psched_time_t now; /* Cached timestamp */ psched_time_t now; /* Cached timestamp */
psched_time_t now_rt; /* Cached real time */
unsigned int pmask; unsigned int pmask;
struct hrtimer delay_timer; struct hrtimer delay_timer;
...@@ -353,12 +352,7 @@ cbq_mark_toplevel(struct cbq_sched_data *q, struct cbq_class *cl) ...@@ -353,12 +352,7 @@ cbq_mark_toplevel(struct cbq_sched_data *q, struct cbq_class *cl)
int toplevel = q->toplevel; int toplevel = q->toplevel;
if (toplevel > cl->level && !(qdisc_is_throttled(cl->q))) { if (toplevel > cl->level && !(qdisc_is_throttled(cl->q))) {
psched_time_t now; psched_time_t now = psched_get_time();
psched_tdiff_t incr;
now = psched_get_time();
incr = now - q->now_rt;
now = q->now + incr;
do { do {
if (cl->undertime < now) { if (cl->undertime < now) {
...@@ -956,7 +950,6 @@ cbq_dequeue(struct Qdisc *sch) ...@@ -956,7 +950,6 @@ cbq_dequeue(struct Qdisc *sch)
cbq_update(q); cbq_update(q);
q->now = now; q->now = now;
q->now_rt = now;
for (;;) { for (;;) {
q->wd_expires = 0; q->wd_expires = 0;
...@@ -1212,7 +1205,6 @@ cbq_reset(struct Qdisc *sch) ...@@ -1212,7 +1205,6 @@ cbq_reset(struct Qdisc *sch)
hrtimer_cancel(&q->delay_timer); hrtimer_cancel(&q->delay_timer);
q->toplevel = TC_CBQ_MAXLEVEL; q->toplevel = TC_CBQ_MAXLEVEL;
q->now = psched_get_time(); q->now = psched_get_time();
q->now_rt = q->now;
for (prio = 0; prio <= TC_CBQ_MAXPRIO; prio++) for (prio = 0; prio <= TC_CBQ_MAXPRIO; prio++)
q->active[prio] = NULL; q->active[prio] = NULL;
...@@ -1396,7 +1388,6 @@ static int cbq_init(struct Qdisc *sch, struct nlattr *opt) ...@@ -1396,7 +1388,6 @@ static int cbq_init(struct Qdisc *sch, struct nlattr *opt)
q->delay_timer.function = cbq_undelay; q->delay_timer.function = cbq_undelay;
q->toplevel = TC_CBQ_MAXLEVEL; q->toplevel = TC_CBQ_MAXLEVEL;
q->now = psched_get_time(); q->now = psched_get_time();
q->now_rt = q->now;
cbq_link_class(&q->link); cbq_link_class(&q->link);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment