This code, which dates to August 2008, initially sets the packet-in
scheduler token buckets to 10% full, without any rationale. I suspect
that this is just a typo for 100% full, which I think would be more
conventional, so this commit switches to that.
Signed-off-by: Ben Pfaff <blp@nicira.com>
ps->n_queued = 0;
ps->next_txq = NULL;
ps->last_fill = time_msec();
- ps->tokens = rate_limit * 100;
+ ps->tokens = rate_limit * 1000;
ps->n_txq = 0;
ps->n_normal = 0;
ps->n_limited = 0;