a variable was erroneously declared as 32 bit instead of 64.

MFC after:	3 days
This commit is contained in:
Luigi Rizzo 2012-01-27 13:26:25 +00:00
parent a12406889a
commit 7dec311e83
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=230614

View File

@ -608,7 +608,7 @@ static inline void
qfq_update_start(struct qfq_sched *q, struct qfq_class *cl)
{
unsigned long mask;
uint32_t limit, roundedF;
uint64_t limit, roundedF;
int slot_shift = cl->grp->slot_shift;
roundedF = qfq_round_down(cl->F, slot_shift);