diff options
author | Patrick McHardy <kaber@trash.net> | 2007-03-16 04:23:02 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:26:14 -0400 |
commit | 00c04af9df3d26e5a8093da850e982a7b6aeada7 (patch) | |
tree | 4764d2dd26f672f707fe513815a7745d03f46f43 /net/sched/sch_htb.c | |
parent | fb983d4578e238b7f483b4f8f39f3a0f35d34d16 (diff) |
[NET_SCHED]: kill jiffie conversion macros
Now that all packet schedulers have been converted to hrtimers most users
of PSCHED_JIFFIE2US and PSCHED_US2JIFFIE are gone. The remaining users use
it to convert external time units to packet scheduler clock ticks, so use
PSCHED_TICKS_PER_SEC instead.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_htb.c')
-rw-r--r-- | net/sched/sch_htb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index 4d84200f097b..f76c20c0a109 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c | |||
@@ -1469,7 +1469,7 @@ static int htb_change_class(struct Qdisc *sch, u32 classid, | |||
1469 | /* set class to be in HTB_CAN_SEND state */ | 1469 | /* set class to be in HTB_CAN_SEND state */ |
1470 | cl->tokens = hopt->buffer; | 1470 | cl->tokens = hopt->buffer; |
1471 | cl->ctokens = hopt->cbuffer; | 1471 | cl->ctokens = hopt->cbuffer; |
1472 | cl->mbuffer = PSCHED_JIFFIE2US(HZ * 60); /* 1min */ | 1472 | cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */ |
1473 | PSCHED_GET_TIME(cl->t_c); | 1473 | PSCHED_GET_TIME(cl->t_c); |
1474 | cl->cmode = HTB_CAN_SEND; | 1474 | cl->cmode = HTB_CAN_SEND; |
1475 | 1475 | ||